From 89ebe6b572e7072a77595dd784ae556c7891e9da Mon Sep 17 00:00:00 2001 From: Mauko Quiroga Date: Fri, 18 Oct 2024 17:59:48 +0200 Subject: [PATCH] chore(storage): fix / for test on win (#1273) --- openfisca_core/data_storage/on_disk_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openfisca_core/data_storage/on_disk_storage.py b/openfisca_core/data_storage/on_disk_storage.py index 818cec22e..57e8ff255 100644 --- a/openfisca_core/data_storage/on_disk_storage.py +++ b/openfisca_core/data_storage/on_disk_storage.py @@ -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