You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The archive_should_contain_file(self, zip_file, filename) function currently accepts filename as a static string. To enhance the flexibility and usability of this function, it should also support filename in regex format.
to fix this, i put this line of code: self.collections.should_contain_match(files, filename)
instead of this line of code: self.collections.list_should_contain_value(files, filename)
The text was updated successfully, but these errors were encountered:
The archive_should_contain_file(self, zip_file, filename) function currently accepts filename as a static string. To enhance the flexibility and usability of this function, it should also support filename in regex format.
to fix this, i put this line of code:
self.collections.should_contain_match(files, filename)
instead of this line of code:
self.collections.list_should_contain_value(files, filename)
The text was updated successfully, but these errors were encountered: