Skip to content

Commit 0556992

Browse files
saimiduahsan-z-khan
authored andcommitted
Fix non-existent variable name
1 parent 06b417a commit 0556992

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integ/s3_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ def assert_s3_file_patterns_exist(sagemaker_session, s3_url, file_patterns):
4242
search_pattern = re.compile(pattern)
4343
found = [x["Key"] for x in contents if search_pattern.search(x["Key"])]
4444
if not found:
45-
raise ValueError("File {} is not found under {}".format(f, s3_url))
45+
raise ValueError("File {} is not found under {}".format(pattern, s3_url))

0 commit comments

Comments
 (0)