Skip to content

Commit

Permalink
cml fix
Browse files Browse the repository at this point in the history
  • Loading branch information
even1024 committed Jun 26, 2024
1 parent b689fa5 commit bb08360
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/tests/integration/tests/formats/cdx_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ def test_file(filename, suffix=".mol"):
os.path.join(root_cdxml, filename + ".cdxml")
)
resb64 = rea.b64cdx()
with open(os.path.join(ref_path, filename + ".b64cdx"), "w") as file:
file.write(resb64)
# with open(os.path.join(ref_path, filename + ".b64cdx"), "w") as file:
# file.write(resb64)
with open(os.path.join(ref_path, filename + ".b64cdx"), "r") as file:
refb64 = file.read()
print(filename + (":success" if refb64 == resb64 else ":failed"))
Expand Down

0 comments on commit bb08360

Please sign in to comment.