aboutsummaryrefslogtreecommitdiff
path: root/test_binary_conversion.py
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2023-07-01 16:36:47 -0500
committerTinWoodman92 <chrhodgden@gmail.com>2023-07-01 16:36:47 -0500
commit892076782660eddb8f8daffd2fcc5870aa8f4a93 (patch)
tree6ba4e024ab66cce0fea780702c3083c339b61cef /test_binary_conversion.py
parent315999ec3a50b860ea0cc14ec786155a48bc857e (diff)
parent6befebe3030105bd88f22970a369178a2b7212e1 (diff)
Merge branch 'eval_expr'
Diffstat (limited to 'test_binary_conversion.py')
-rw-r--r--test_binary_conversion.py4
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()