Skip to content

Commit 1f308bd

Browse files
committed
oops accidentally left a print statement
1 parent 73278ba commit 1f308bd

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

test/asynchronous/test_cursor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,6 @@ async def test_clone(self):
934934
cursor2 = copy.copy(cursor)
935935
cursor2._projection["cursor2"] = False
936936
self.assertIsNotNone(cursor._projection)
937-
print(cursor._projection.keys())
938937
self.assertIn("cursor2", cursor._projection.keys())
939938

940939
# Deepcopies and shouldn't mutate

test/test_cursor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,6 @@ def test_clone(self):
925925
cursor2 = copy.copy(cursor)
926926
cursor2._projection["cursor2"] = False
927927
self.assertIsNotNone(cursor._projection)
928-
print(cursor._projection.keys())
929928
self.assertIn("cursor2", cursor._projection.keys())
930929

931930
# Deepcopies and shouldn't mutate

0 commit comments

Comments
 (0)