Skip to content

Commit

Permalink
chore(storage): fix / for test on win (#1273)
Browse files Browse the repository at this point in the history
  • Loading branch information
bonjourmauko committed Oct 18, 2024
1 parent 8ba75ca commit 89ebe6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openfisca_core/data_storage/on_disk_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def restore(self) -> None:
>>> storage1 = data_storage.OnDiskStorage(directory.name)
>>> storage1.put(value, period)
>>> storage1._files
{Period(('year', Instant((2017, 1, 1)), 1)): '.../2017.npy'}
{Period(('year', Instant((2017, 1, 1)), 1)): '...2017.npy'}
>>> storage2 = data_storage.OnDiskStorage(directory.name)
>>> storage2._files
Expand Down

0 comments on commit 89ebe6b

Please sign in to comment.