Skip to content

Commit 79e1bd7

Browse files
Fix styling in tests.
1 parent 0c4ce16 commit 79e1bd7

File tree

5 files changed

+1
-7
lines changed

5 files changed

+1
-7
lines changed

tests/schema_adapted.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424

2525
class GraphAdapter(dj.AttributeAdapter):
26-
2726
attribute_type = "longblob" # this is how the attribute will be declared
2827

2928
@staticmethod

tests/test_alter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
@schema
66
class Experiment(dj.Imported):
7-
87
original_definition = """ # information about experiments
98
-> Subject
109
experiment_id :smallint # experiment number for this subject

tests/test_blob.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020

2121
def test_pack():
22-
2322
for x in (
2423
32,
2524
-3.7e-2,
@@ -166,7 +165,7 @@ def test_recarrays():
166165

167166

168167
def test_object_arrays():
169-
x = np.array(((1, 2, 3), True), dtype='object')
168+
x = np.array(((1, 2, 3), True), dtype="object")
170169
assert_array_equal(x, unpack(pack(x)), "Object array did not serialize correctly")
171170

172171

tests/test_jobs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010

1111
def test_reserve_job():
12-
1312
schema.schema.jobs.delete()
1413
assert_true(subjects)
1514
table_name = "fake_table"

tests/test_s3.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
class TestS3:
1313
@staticmethod
1414
def test_connection():
15-
1615
# Initialize httpClient with relevant timeout.
1716
http_client = urllib3.PoolManager(
1817
timeout=30,
@@ -36,7 +35,6 @@ def test_connection():
3635

3736
@staticmethod
3837
def test_connection_secure():
39-
4038
# Initialize httpClient with relevant timeout.
4139
http_client = urllib3.PoolManager(
4240
timeout=30,

0 commit comments

Comments
 (0)