def test_base64_to_hex(self): env = common.base64_to_hex("Zm9vIGJhcg ==") assert env == b"666f6f20626172"
def test_base64_to_hex(self): env = common.base64_to_hex('Zm9vIGJhcg ==') self.assertEqual(env, b'666f6f20626172')
def test_base64_to_hex(self): env = common.base64_to_hex("Zm9vIGJhcg ==") self.assertEqual(b"666f6f20626172", env)