@@ -53,7 +53,7 @@ def test_writing_incorrect_order_fails(environment, universal_data_sources):
5353 },
5454 )
5555 with pytest .raises (ValueError ):
56- store .write_to_offline_store (
56+ store ._write_to_offline_store (
5757 driver_stats .name , expected_df , allow_registry_cache = False
5858 )
5959
@@ -101,7 +101,7 @@ def test_writing_incorrect_schema_fails(environment, universal_data_sources):
101101 },
102102 )
103103 with pytest .raises (ValueError ):
104- store .write_to_offline_store (
104+ store ._write_to_offline_store (
105105 driver_stats .name , expected_df , allow_registry_cache = False
106106 )
107107
@@ -153,7 +153,7 @@ def test_writing_consecutively_to_offline_store(environment, universal_data_sour
153153 "created" : [ts , ts ],
154154 },
155155 )
156- store .write_to_offline_store (
156+ store ._write_to_offline_store (
157157 driver_stats .name , first_df , allow_registry_cache = False
158158 )
159159
@@ -184,7 +184,7 @@ def test_writing_consecutively_to_offline_store(environment, universal_data_sour
184184 },
185185 )
186186
187- store .write_to_offline_store (
187+ store ._write_to_offline_store (
188188 driver_stats .name , second_df , allow_registry_cache = False
189189 )
190190
0 commit comments