Skip to content

Commit f307d3b

Browse files
committed
Format with black
1 parent fc363f4 commit f307d3b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/test_university.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ def schema_uni(db_creds_test, schema_uni_inactive, connection_test):
5959

6060
def test_activate_unauthorized(schema_uni_inactive, db_creds_test, connection_test):
6161
with pytest.raises(DataJointError):
62-
schema_uni_inactive.activate("unauthorized", connection=dj.conn(**db_creds_test))
62+
schema_uni_inactive.activate(
63+
"unauthorized", connection=dj.conn(**db_creds_test)
64+
)
6365

6466

6567
def test_fill(schema_uni):
@@ -160,8 +162,8 @@ def test_aggr(schema_uni):
160162
Grade, ..., n="count(student_id)", keep_all_rows=True
161163
) & "n>1"
162164
assert not any(
163-
name in section.heading.names for name in Grade.heading.secondary_attributes
164-
)
165+
name in section.heading.names for name in Grade.heading.secondary_attributes
166+
)
165167
assert len(set(section.fetch("dept"))) == 1
166168
assert len(section) == 168
167169
assert bool(section)

0 commit comments

Comments
 (0)