Skip to content

Commit

Permalink
Applied linters
Browse files Browse the repository at this point in the history
  • Loading branch information
lorinkoz committed Aug 14, 2023
1 parent 4f6116f commit c975798
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dpgs_sandbox/tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ def test_schema_descriptor_warning(self):
from django_pgschemas.schema import SchemaDescriptor # noqa

self.assertEqual(len(w), 1)
self.assertEqual(str(w[0].message), "'SchemaDescriptor' is deprecated, use 'Schema' instead")
self.assertEqual(
str(w[0].message), "'SchemaDescriptor' is deprecated, use 'Schema' instead"
)

def test_schema_descriptor_accessible(self):
from django_pgschemas.schema import SchemaDescriptor
Expand Down

0 comments on commit c975798

Please sign in to comment.