Issue #3730 - Updating invalid test assertion

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2019-12-19 12:43:49 -06:00
parent 94988596a1
commit 26fde02c55
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4

View File

@ -55,7 +55,6 @@ public class WebSocketClientInitTest
assertThat("HttpClient started", http.isStarted(), is(true)); assertThat("HttpClient started", http.isStarted(), is(true));
HttpClient httpBean = ws.getBean(HttpClient.class); HttpClient httpBean = ws.getBean(HttpClient.class);
assertThat("HttpClient should not be found in WebSocketClient", httpBean, nullValue());
assertThat("HttpClient bean is managed", ws.isManaged(httpBean), is(false)); assertThat("HttpClient bean is managed", ws.isManaged(httpBean), is(false));
assertThat("WebSocketClient should not be found in HttpClient", http.getBean(WebSocketClient.class), nullValue()); assertThat("WebSocketClient should not be found in HttpClient", http.getBean(WebSocketClient.class), nullValue());
} }