We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f12cc commit 3bf5c52Copy full SHA for 3bf5c52
tests/system/test_system.py
@@ -537,9 +537,9 @@ def test_bucket_get_blob_with_user_project(self):
537
class TestStorageFiles(unittest.TestCase):
538
539
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"},
+ "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")},
543
}
544
545
@classmethod
0 commit comments