mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-09-14 13:25:13 -05:00
Add decopmressed encoding; add decompressed test cases
This commit is contained in:
committed by
Jennifer Taylor
parent
036bf1ce20
commit
224ed0e2a8
@@ -11,9 +11,11 @@ class TestProtocol(unittest.TestCase):
|
||||
def assertLoopback(self, root: Node) -> None:
|
||||
proto = EAmuseProtocol()
|
||||
|
||||
for encoding in [EAmuseProtocol.BINARY, EAmuseProtocol.XML]:
|
||||
for encoding in [EAmuseProtocol.BINARY, EAmuseProtocol.BINARY_DECOMPRESSED, EAmuseProtocol.XML]:
|
||||
if encoding == EAmuseProtocol.BINARY:
|
||||
loop_name = "binary"
|
||||
elif encoding == EAmuseProtocol.BINARY_DECOMPRESSED:
|
||||
loop_name = "decompressed binary"
|
||||
elif encoding == EAmuseProtocol.XML:
|
||||
loop_name = "xml"
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user