Skip to content

Commit c944087

Browse files
committed
fix(tests): fix inverted test condition
Signed-off-by: Raphael Höser <[email protected]>
1 parent beee188 commit c944087

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/write_events.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ async fn write_events_with_is_eventql_true_condition() {
229229
}],
230230
)
231231
.await;
232-
assert!(result.is_err(), "Expected an error, but got: {:?}", result);
232+
assert!(result.is_ok(), "Expected an ok, but got: {:?}", result);
233233
}
234234

235235
#[tokio::test]

0 commit comments

Comments
 (0)