Skip to content

Commit a628795

Browse files
committed
fixed test
1 parent 032fd55 commit a628795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/test_pluggable_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_put_fetch(self):
1919
adapter = StorageMockAdapter()
2020
try:
2121
storage = PluggableSplitStorage(adapter)
22-
split_fn = os.path.join(os.path.dirname(__file__), 'files', 'split_Changes.json')
22+
split_fn = os.path.join(os.path.dirname(__file__), 'files', 'split_changes.json')
2323
with open(split_fn, 'r') as flo:
2424
data = json.loads(flo.read())
2525
for split in data['splits']:
@@ -85,7 +85,7 @@ def test_get_all(self):
8585
adapter = StorageMockAdapter()
8686
try:
8787
storage = PluggableSplitStorage(adapter)
88-
split_fn = os.path.join(os.path.dirname(__file__), 'files', 'split_Changes.json')
88+
split_fn = os.path.join(os.path.dirname(__file__), 'files', 'split_changes.json')
8989
with open(split_fn, 'r') as flo:
9090
data = json.loads(flo.read())
9191
for split in data['splits']:

0 commit comments

Comments
 (0)