diff --git a/tests/modeltests/fixtures/tests.py b/tests/modeltests/fixtures/tests.py
index f9b0ac8..fe88579 100644
a
|
b
|
class FixtureLoadingTests(TestCase):
|
251 | 251 | if connection.vendor == 'mysql': |
252 | 252 | connection.cursor().execute("SET sql_mode = 'TRADITIONAL'") |
253 | 253 | with six.assertRaisesRegex(self, IntegrityError, |
254 | | "Could not load fixtures.Article\(pk=1\): .*$"): |
| 254 | "Could not load fixtures.Article\(pk=1\): .*"): |
255 | 255 | management.call_command('loaddata', 'invalid.json', verbosity=0, commit=False) |
256 | 256 | |
257 | 257 | def test_loading_using(self): |