Skip to content

Commit ca59185

Browse files
committed
minor change of test
1 parent e68658a commit ca59185

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ftest/compare_file.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read_file(filename):
1313
def sort_line(line):
1414
return ''.join(sorted(line))
1515

16-
data1 = list(map(sort_line, read_file(sys.argv[1])))
16+
data1 = list(read_file(sys.argv[1]))
1717
data2 = list(map(sort_line, read_file(sys.argv[2])))
1818
data1.sort()
1919
data2.sort()
@@ -24,7 +24,7 @@ def compare_file(first, second):
2424
return False
2525

2626
for line in first:
27-
if line not in second:
27+
if sort_line(line) not in second:
2828
print('first differs:')
2929
print('{0}'.format(line))
3030
return False

0 commit comments

Comments
 (0)