Removed references to TLSharp since they're "ads"

See their #197 issue.
This commit is contained in:
Lonami
2016-09-12 14:16:17 +02:00
parent a7c7fdd2e4
commit 0fe0cdf682
13 changed files with 8 additions and 37 deletions

View File

@@ -50,7 +50,7 @@ class UtilsTests(unittest.TestCase):
with BinaryWriter() as writer:
writer.write_int(0x60469778)
buffer = writer.get_bytes()
valid = b'\x78\x97\x46\x60' # Tested written bytes using TLSharp and C#'s MemoryStream
valid = b'\x78\x97\x46\x60' # Tested written bytes using C#'s MemoryStream
assert buffer == valid, "Written type should be {} but is {}".format(list(valid), list(buffer))