Skip to content

Commit

Permalink
renamed test files to agree with module names
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Simkovic committed Jul 14, 2017
1 parent ffb7171 commit eec41e2
Show file tree
Hide file tree
Showing 19 changed files with 7 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,14 @@ def test_write_1(self):
"",
]
ref = os.linesep.join(ref)
print("====")
print(ref)
print("====")
with open(f_name_out, 'r') as f_in:
output = "".join(f_in.readlines())
output = f_in.read()
print("====")
print(output)
print("====")
self.assertEqual(ref, output)
os.unlink(f_name_in)
os.unlink(f_name_out)
Expand Down

0 comments on commit eec41e2

Please sign in to comment.