Skip to content

Commit

Permalink
better
Browse files Browse the repository at this point in the history
  • Loading branch information
myrrc committed Jun 5, 2024
1 parent 9b528d4 commit 33842d1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions tests/compare
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ if len(left_file) != len(right_file):
out = 1

# skip project declaration
for left, right in zip(left_file.split()[1], right_file.split()[1]):
for left, right in zip(left_file.split()[1:], right_file.split()[1:]):
left, right = left.strip(), right.strip()
if left == right or any(map(lambda x: left.startswith(x), ignored_keys)):
continue
print(f"< {left}\n> {right}")
out = 1

exit(out)
Empty file removed tests/nonexistent.RPP
Empty file.
3 changes: 0 additions & 3 deletions tests/nonexistent.rks

This file was deleted.

0 comments on commit 33842d1

Please sign in to comment.