Skip to content

Commit

Permalink
NFC: apply black
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiirola committed Dec 4, 2023
1 parent c39b515 commit da8da5a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions pyomo/core/tests/unit/test_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -2663,12 +2663,16 @@ def test_infinite_setdifference(self):

self.assertEqual(
list(x.ranges()),
list(RangeSet(ranges=[
NR(0, 1, 0, (True, False)),
NR(1, 3, 0, (False, False)),
NR(3, 5, 0, (False, False)),
NR(5, 6, 0, (False, True)),
]).ranges()),
list(
RangeSet(
ranges=[
NR(0, 1, 0, (True, False)),
NR(1, 3, 0, (False, False)),
NR(3, 5, 0, (False, False)),
NR(5, 6, 0, (False, True)),
]
).ranges()
),
)


Expand Down

0 comments on commit da8da5a

Please sign in to comment.