Skip to content

Commit 4b7381d

Browse files
committed
Add test class fixtures
1 parent 12bb2ed commit 4b7381d

File tree

2 files changed

+141
-248
lines changed

2 files changed

+141
-248
lines changed

pyjdb/pyjdb.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,8 +372,6 @@ def decode_value_bytes_for_tag_type(self, tag_type, value_bytes):
372372
'c': lambda vb: struct.unpack(
373373
">" + STRUCT_FMTS_BY_SIZE_UNSIGNED[value_len], vb), # CLASS
374374
}
375-
print("value_len: %s" % value_len)
376-
print("tag_type: %s" % tag_type)
377375
value = decode_fn_by_tag_type[tag_type](value_bytes[0 : value_len])[0]
378376
return value
379377

0 commit comments

Comments
 (0)