Skip to content
Snippets Groups Projects
Commit 45871732 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: Python compatibility - choices no exist in 3.5

parent ece4eb12
No related branches found
No related tags found
No related merge requests found
......@@ -145,8 +145,8 @@ def test_sersiesCRC():
for series, expect in tests:
series = dict(series)
if expect is RANDOM:
expect = ''.join(random.choices(
string.ascii_letters + string.digits, k=30))
expect = ''.join([random.choice(string.ascii_letters + string.digits)
for i in range(30)])
series['SeriesInstanceUID'] = expect
expect = str(binascii.crc32(expect.encode()))
echo = series.get('EchoNumber', 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment