コード例 #1
0
 def test_base64_to_hex(self):
     env = common.base64_to_hex("Zm9vIGJhcg ==")
     assert env == b"666f6f20626172"
コード例 #2
0
 def test_base64_to_hex(self):
     env = common.base64_to_hex('Zm9vIGJhcg ==')
     self.assertEqual(env, b'666f6f20626172')
コード例 #3
0
ファイル: test_common.py プロジェクト: monty16597/localstack
 def test_base64_to_hex(self):
     env = common.base64_to_hex("Zm9vIGJhcg ==")
     self.assertEqual(b"666f6f20626172", env)