Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
pamelafox committed Aug 3, 2024
1 parent 49dc626 commit 483a75b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/rcviz_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_visualize():
'"virfib(1)"',
'"virfib(0)"',
'"virfib(1)"',
"Result"
"Result",
]
assert [e.get_label() for e in dotgraph.get_edges()] == [
'"(#1)"',
Expand Down Expand Up @@ -77,7 +77,7 @@ def rev(lst, start, end):
assert [n.get_label() for n in dotgraph.get_nodes()] == [
'"rev([1, 2, 3, 4, 5], 0, 4)"',
'"rev([5, 2, 3, 4, 1], 1, 3)"',
'"rev([5, 4, 3, 2, 1], 2, 2)"'
'"rev([5, 4, 3, 2, 1], 2, 2)"',
]
assert [e.get_label() for e in dotgraph.get_edges()] == ['"(#1)"', '"(#2)"']

Expand All @@ -102,5 +102,5 @@ def finditem(obj, key):
assert [n.get_label() for n in dotgraph.get_nodes()] == [
"\"finditem(\\{'B': 1, 'A': \\{'C': 2\\}\\}, C)\"",
"\"finditem(\\{'C': 2\\}, C)\"",
"Result"
"Result",
]

0 comments on commit 483a75b

Please sign in to comment.