Skip to content

Commit

Permalink
Black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolossus committed Jun 27, 2023
1 parent 99577d1 commit 7c68f4e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions testsuite/pytests/sli2py_regressions/test_issue_105.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ def test_min_delay_on_fresh_connection(delay):
"""

nrn = nest.Create("iaf_psc_alpha")
conn = nest.Connect(
nrn, nrn, "one_to_one", {"delay": delay}, return_synapsecollection=True
)
conn = nest.Connect(nrn, nrn, "one_to_one", {"delay": delay}, return_synapsecollection=True)

expected_delay = 0.8
assert conn.delay == expected_delay
Expand Down Expand Up @@ -81,9 +79,7 @@ def test_max_delay_on_fresh_connection(delay):
"""

nrn = nest.Create("iaf_psc_alpha")
conn = nest.Connect(
nrn, nrn, "one_to_one", {"delay": delay}, return_synapsecollection=True
)
conn = nest.Connect(nrn, nrn, "one_to_one", {"delay": delay}, return_synapsecollection=True)

expected_delay = 0.9
assert conn.delay == expected_delay
Expand Down

0 comments on commit 7c68f4e

Please sign in to comment.