Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 7db1dad

Browse files
committed
tests: normailze systest data paths for Windows
See: #51.
1 parent 90f7c47 commit 7db1dad

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

tests/system/test_system.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -537,9 +537,15 @@ def test_bucket_get_blob_with_user_project(self):
537537
class TestStorageFiles(unittest.TestCase):
538538

539539
FILES = {
540-
"logo": {"path": DATA_DIRNAME + "/CloudPlatform_128px_Retina.png"},
541-
"big": {"path": DATA_DIRNAME + "/five-point-one-mb-file.zip"},
542-
"simple": {"path": DATA_DIRNAME + "/simple.txt"},
540+
"logo": {
541+
"path": os.path.join(DATA_DIRNAME, "CloudPlatform_128px_Retina.png")
542+
},
543+
"big": {
544+
"path": os.path.join(DATA_DIRNAME, "five-point-one-mb-file.zip"),
545+
},
546+
"simple": {
547+
"path": os.path.join(DATA_DIRNAME, "simple.txt"),
548+
},
543549
}
544550

545551
@classmethod

0 commit comments

Comments
 (0)