unittest/test_files.TransparentEF_Test: Actually test encoder

In the test_encode_file() method, we should actually test the encoder,
and not the decoder.  I suppose this was a copy+paste mistake at some
point?  In the LinearFixedEF_Test.test_encoder_record we were already
testing the encoder. Just TransparentEF_Test got it wrong...

Change-Id: Id23305a78ab9acd2e006f2b26b72408795844d23
This commit is contained in:
Harald Welte
2025-12-16 02:52:10 +01:00
parent a62fb2b987
commit 82b57403c7

View File

@@ -256,8 +256,8 @@ class TransparentEF_Test(unittest.TestCase):
encoded = t[0] encoded = t[0]
decoded = t[1] decoded = t[1]
logging.debug("Testing encode of %s", name) logging.debug("Testing encode of %s", name)
re_dec = inst.decode_hex(encoded) re_enc = inst.encode_hex(decoded)
self.assertEqual(decoded, re_dec) self.assertEqual(encoded, re_enc)
def test_de_encode_file(self): def test_de_encode_file(self):
"""Test the decoder and encoder for a transparent EF. Performs first a decoder """Test the decoder and encoder for a transparent EF. Performs first a decoder