summaryrefslogtreecommitdiff
path: root/tests/migrations/test_state.py
diff options
context:
space:
mode:
authorDražen Odobašić <dodobas@candela-it.com>2015-09-11 19:33:12 -0400
committerTim Graham <timograham@gmail.com>2015-09-12 11:40:50 -0400
commitb1e33ceceda1e75ff68c7deed8f6659683a195d3 (patch)
treee4e446f69194f2dc3c9c7ee3ecf48290ea8d4d31 /tests/migrations/test_state.py
parent84b0a8d2aad042fb573df5055b6153770d0929ac (diff)
Fixed #23395 -- Limited line lengths to 119 characters.
Diffstat (limited to 'tests/migrations/test_state.py')
-rw-r--r--tests/migrations/test_state.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/migrations/test_state.py b/tests/migrations/test_state.py
index d528e89920..24185bdb78 100644
--- a/tests/migrations/test_state.py
+++ b/tests/migrations/test_state.py
@@ -122,7 +122,10 @@ class StateTests(SimpleTestCase):
self.assertEqual(author_state.fields[1][1].max_length, 255)
self.assertEqual(author_state.fields[2][1].null, False)
self.assertEqual(author_state.fields[3][1].null, True)
- self.assertEqual(author_state.options, {"unique_together": {("name", "bio")}, "index_together": {("bio", "age")}})
+ self.assertEqual(
+ author_state.options,
+ {"unique_together": {("name", "bio")}, "index_together": {("bio", "age")}}
+ )
self.assertEqual(author_state.bases, (models.Model, ))
self.assertEqual(book_state.app_label, "migrations")