Skip to content

Commit

Permalink
clean-up prints
Browse files Browse the repository at this point in the history
  • Loading branch information
kif committed Dec 12, 2022
1 parent ac8d6fb commit 368ebe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fabio/test/codecs/test_cbfimage.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,11 @@ def test_cif(self):
"""
filename = os.path.join(UtilsTest.tempdir, "LaB6.cif")
filename2 =os.path.join(UtilsTest.tempdir, "LaB6_2.cif")
print(filename, filename2)
# print(filename, filename2)
with open(filename, "w") as w:
w.write(LaB6)
lab6 = CIF(filename)
print(lab6)
# print(lab6)
lab6.saveCIF(filename2)
lab62 = CIF(filename2)
self.assertEqual(len(lab6), len(lab62), "size matches")
Expand Down

0 comments on commit 368ebe7

Please sign in to comment.