Commit c67d1f31 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 04f722ae
......@@ -238,7 +238,9 @@ def test_bitravel2Way():
a,b,c = 'a','b','c'
A = [a,b,c]
B = [1, 2]
assert list(bitravel2Way(A, B)) == [a,1,b,1,c,1,a,2,b,2,c,2,a,3,b,3,c,3,a]
got = list(bitravel2Way(A, B))
want = [a,1,b,1,c,1,a,2,b,2,c,2,a]
assert got == want, (got, want)
test_bitravel2Way()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment