Ejemplo n.º 1
0
 def test_base64_to_hex(self):
     env = common.base64_to_hex("Zm9vIGJhcg ==")
     assert env == b"666f6f20626172"
Ejemplo n.º 2
0
 def test_base64_to_hex(self):
     env = common.base64_to_hex('Zm9vIGJhcg ==')
     self.assertEqual(env, b'666f6f20626172')
Ejemplo n.º 3
0
 def test_base64_to_hex(self):
     env = common.base64_to_hex("Zm9vIGJhcg ==")
     self.assertEqual(b"666f6f20626172", env)