Skip to content
This repository has been archived by the owner on Sep 10, 2020. It is now read-only.

Commit

Permalink
[utils] Updated format validation test
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Nov 21, 2019
1 parent f4699ff commit d48d1fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_freeradius/tests/base/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_validate_file_format(self):
with self.assertRaises(ValidationError) as error:
validate_csvfile(open(invalid_format_path, "rb"))
self.assertTrue(
"Incorrect file format has been uploaded. Please Try Again!"
"Unrecognized file format, the supplied file does not look like a CSV file."
in error.exception.message
)

Expand Down

0 comments on commit d48d1fc

Please sign in to comment.