Skip to content

Commit

Permalink
add test case for query node URL list with duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
alyssadai committed Nov 20, 2023
1 parent 3cbe7dc commit 92e7d95
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,14 @@ def test_check_nodes_are_recognized(
["", "https://secondknownnode.org"],
["https://secondknownnode.org/"],
),
(
[
"https://secondknownnode.org/",
"https://firstknownnode.org",
"https://secondknownnode.org/",
],
["https://secondknownnode.org/", "https://firstknownnode.org/"],
),
([], ["https://firstknownnode.org/", "https://secondknownnode.org/"]),
],
)
Expand Down

0 comments on commit 92e7d95

Please sign in to comment.