Skip to content

Commit f283f72

Browse files
committed
Fix
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
1 parent 7a4be44 commit f283f72

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

sdk/python/tests/integration/offline_store/test_offline_push.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ def test_writing_incorrect_order_fails(environment, universal_data_sources):
5656
},
5757
)
5858
with pytest.raises(ValueError):
59-
store.write_to_offline_store(
60-
driver_stats.name, df, allow_registry_cache=False
61-
)
59+
store.write_to_offline_store(driver_stats.name, df, allow_registry_cache=False)
6260

6361

6462
@pytest.mark.integration
@@ -107,9 +105,7 @@ def test_writing_incorrect_schema_fails(environment, universal_data_sources):
107105
},
108106
)
109107
with pytest.raises(ValueError):
110-
store.write_to_offline_store(
111-
driver_stats.name, df, allow_registry_cache=False
112-
)
108+
store.write_to_offline_store(driver_stats.name, df, allow_registry_cache=False)
113109

114110

115111
@pytest.mark.integration

0 commit comments

Comments
 (0)