Skip to content

Commit

Permalink
Fix missing assert statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenning committed Oct 11, 2023
1 parent 801aa04 commit 7a40b7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_Ccp_Util.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def test_CiscoRange_18():
"Eth1/10",
"Eth1/12-20",
]
CiscoRange("Eth1/1,Eth1/12-20,Eth1/16,Eth1/10").as_list == result_correct
assert CiscoRange("Eth1/1,Eth1/12-20,Eth1/16,Eth1/10").as_list == result_correct


def test_CiscoRange_19():
Expand All @@ -776,7 +776,7 @@ def test_CiscoRange_19():
"interface Eth1/10",
"interface Eth1/12-20",
]
CiscoRange("interface Eth1/1,interface Eth1/12-20,interface Eth1/16,interface Eth1/10").as_list == result_correct
assert CiscoRange("interface Eth1/1,interface Eth1/12-20,interface Eth1/16,interface Eth1/10").as_list == result_correct


def test_CiscoRange_compressed_str_01():
Expand Down

0 comments on commit 7a40b7f

Please sign in to comment.