@@ -1062,8 +1062,10 @@ def test_s3_complex(self):
1062
1062
@pytest .mark .skipif (have_fsspec is False , reason = "needs fsspec" )
1063
1063
class TestFSStoreWithDefaultDimensionSeparator (StoreTests ):
1064
1064
1065
- def create_store (self , normalize_keys = False ,
1066
- dimension_separator = "." , ** kwargs ):
1065
+ def create_store (self , normalize_keys = False , ** kwargs ):
1066
+
1067
+ kwargs .pop ("dimension_separator" , None )
1068
+ dimension_separator = "."
1067
1069
1068
1070
# Since the user is passing key_separator, that will take priority.
1069
1071
skip_if_nested_chunks (** kwargs )
@@ -1173,6 +1175,7 @@ class TestNestedDirectoryStoreWithDefaultValue(TestDirectoryStore):
1173
1175
def create_store (self , normalize_keys = False , ** kwargs ):
1174
1176
path = tempfile .mkdtemp ()
1175
1177
atexit .register (atexit_rmtree , path )
1178
+ kwargs .pop ("dimension_separator" , None )
1176
1179
store = NestedDirectoryStore (
1177
1180
path , normalize_keys = normalize_keys ,
1178
1181
dimension_separator = "/" , ** kwargs )
0 commit comments