Skip to content

Commit 3bf5c52

Browse files
authored
tests: normailze systest data paths for Windows (#306)
See: #51.
1 parent 75f12cc commit 3bf5c52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/system/test_system.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -537,9 +537,9 @@ 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": {"path": os.path.join(DATA_DIRNAME, "CloudPlatform_128px_Retina.png")},
541+
"big": {"path": os.path.join(DATA_DIRNAME, "five-point-one-mb-file.zip")},
542+
"simple": {"path": os.path.join(DATA_DIRNAME, "simple.txt")},
543543
}
544544

545545
@classmethod

0 commit comments

Comments
 (0)