Made the tests less brittle

This commit is contained in:
Marcin Grzejszczak
2018-10-30 12:13:33 +01:00
parent 559f46c6b8
commit 77f40a62d7

View File

@@ -112,7 +112,7 @@ public class JmsTracingConfigurationTest {
assertThat(trace).allSatisfy(s -> assertThat(s.traceId())
.isEqualTo(trace.get(0).traceId()));
assertThat(trace).extracting(Span::name).containsExactly("send",
assertThat(trace).extracting(Span::name).contains("send",
"receive", "on-message");
});
}