Skip to content

Commit

Permalink
Revert "printf debugging"
Browse files Browse the repository at this point in the history
This reverts commit acc5ea8.
  • Loading branch information
franzpoeschel committed Dec 5, 2023
1 parent acc5ea8 commit 1cb8b7c
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/python/unittest/API/APITest.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,12 +251,6 @@ def attributeRoundTrip(self, file_ending):
series.close()
self.assertFalse(series)

if(file_ending == "json"):
with open("unittest_py_API." + file_ending, 'r') as json_file:
print("JSON CONTENTS:\n", json_file.read())
else:
print("BACKEND:", file_ending)

# read back
series = io.Series(
"unittest_py_API." + file_ending,
Expand All @@ -270,9 +264,6 @@ def attributeRoundTrip(self, file_ending):
self.assertEqual(series.get_attribute("char"), "c")
self.assertEqual(series.get_attribute("pystring"), "howdy!")
self.assertEqual(series.get_attribute("pystring2"), "howdy, too!")
print("DEBUG: pystring3='{}' of type '{}'".format(
series.get_attribute("pystring3"),
type(series.get_attribute("pystring3"))))
self.assertEqual(bytes(series.get_attribute("pystring3")),
b"howdy, again!")
self.assertEqual(series.get_attribute("pyint"), 13)
Expand Down

0 comments on commit 1cb8b7c

Please sign in to comment.