diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-25 22:03:47 -0500 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-25 22:03:47 -0500 |
commit | 30694481ec80877d227728f5dfa3866c144dfc46 (patch) | |
tree | 69e093406609df93c5b78309acad47d0eac317cf /test_binary_conversion.py | |
parent | 2a1abc25750ea14c2c25a18f903938b9e24c2233 (diff) |
Moved comment.
Diffstat (limited to 'test_binary_conversion.py')
-rw-r--r-- | test_binary_conversion.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test_binary_conversion.py b/test_binary_conversion.py index 5e52e7b..5b28f4c 100644 --- a/test_binary_conversion.py +++ b/test_binary_conversion.py @@ -1,6 +1,8 @@ import unittest from dialoguer.binary_conversion import bin_conv +# some of these test currently fail because bytes are reversed. +# the binary conversions work with R's tendancy to reverse the sockets i/o # perhaps we can put reversals in this test class TestBinaryConversion(unittest.TestCase): @@ -36,8 +38,6 @@ class TestBinaryConversion(unittest.TestCase): var_i = bin_conv(bin_i, type(i)) self.assertEqual(i, var_i) - # this test currently fails because bytes are reversed. - # the binary conversions work with R's tendancy to reverse the sockets i/o def test_string_conversion(self): str_base = 'abcdefghijklmnopqrstuvwxyz!@#$%^&*()' str_base += str_base.upper() |