Skip to content

Commit

Permalink
tests: normailze systest data paths for Windows (#306)
Browse files Browse the repository at this point in the history
See: #51.
  • Loading branch information
tseaver committed Nov 10, 2020
1 parent 75f12cc commit 3bf5c52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/system/test_system.py
Expand Up @@ -537,9 +537,9 @@ def test_bucket_get_blob_with_user_project(self):
class TestStorageFiles(unittest.TestCase):

FILES = {
"logo": {"path": DATA_DIRNAME + "/CloudPlatform_128px_Retina.png"},
"big": {"path": DATA_DIRNAME + "/five-point-one-mb-file.zip"},
"simple": {"path": DATA_DIRNAME + "/simple.txt"},
"logo": {"path": os.path.join(DATA_DIRNAME, "CloudPlatform_128px_Retina.png")},
"big": {"path": os.path.join(DATA_DIRNAME, "five-point-one-mb-file.zip")},
"simple": {"path": os.path.join(DATA_DIRNAME, "simple.txt")},
}

@classmethod
Expand Down

0 comments on commit 3bf5c52

Please sign in to comment.