mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01:00
Fixed a flaky test.
This commit is contained in:
parent
046a8eb9c4
commit
3a30b9c575
@ -1,3 +1,4 @@
|
||||
import os
|
||||
import unittest
|
||||
import warnings
|
||||
|
||||
@ -231,7 +232,9 @@ class TestComplexSettingOverride(TestCase):
|
||||
self.assertEqual(settings.TEST_WARN, 'override')
|
||||
|
||||
self.assertEqual(len(w), 1)
|
||||
self.assertEqual(w[0].filename, __file__)
|
||||
# File extension may by .py, .pyc, etc. Compare only basename.
|
||||
self.assertEqual(os.path.splitext(w[0].filename)[0],
|
||||
os.path.splitext(__file__)[0])
|
||||
self.assertEqual(str(w[0].message),
|
||||
'Overriding setting TEST_WARN can lead to unexpected behaviour.')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user