Skip to content

Commit

Permalink
Fix pytest.skip usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jond01 committed Sep 10, 2024
1 parent c7894bb commit b6cbb80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/test_flow_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def _get_table(setup_teardown_test, schema, keys, time_fields=None):

def test_join_with_v3io_table(setup_kv_teardown_test):
if setup_kv_teardown_test.driver_name == "RedisDriver":
pytest.skip(msg="test not relevant for Redis")
pytest.skip("test not relevant for Redis")

table_path = setup_kv_teardown_test.table_name
controller = build_flow(
Expand Down

0 comments on commit b6cbb80

Please sign in to comment.