diff options
| author | Hasan <hasan.r67@gmail.com> | 2016-01-17 14:56:39 +0330 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-29 12:32:18 -0500 |
| commit | 3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5 (patch) | |
| tree | 0d1074cc65a72096e44a4165611fddfc5b7ef7fb /tests/dates | |
| parent | 575706331bec4bf58ce36a9540c4c61fca49025b (diff) | |
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/dates')
| -rw-r--r-- | tests/dates/tests.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/dates/tests.py b/tests/dates/tests.py index 3b6fb5505b..97c4face6e 100644 --- a/tests/dates/tests.py +++ b/tests/dates/tests.py @@ -87,10 +87,8 @@ class DatesTests(TestCase): ) def test_dates_fails_when_no_arguments_are_provided(self): - self.assertRaises( - TypeError, - Article.objects.dates, - ) + with self.assertRaises(TypeError): + Article.objects.dates() def test_dates_fails_when_given_invalid_field_argument(self): six.assertRaisesRegex( |
