diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2019-09-23 08:17:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-23 08:17:49 +0200 |
| commit | e37e481c7bdae0dbbeb5e07d0f943b4b3840f465 (patch) | |
| tree | 84a479a7ab6324f651d406226aef72afca89f7c9 /test/os_dep/linux/stdlib.py | |
| parent | 5a039ca675a60d6de201cb0b89291ee2bd2304c4 (diff) | |
| parent | 523507835ed6789a9489120023b539f6ae82eb18 (diff) | |
| download | miasm-e37e481c7bdae0dbbeb5e07d0f943b4b3840f465.tar.gz miasm-e37e481c7bdae0dbbeb5e07d0f943b4b3840f465.zip | |
Merge pull request #1065 from serpilliere/fix_bytes_dll_names
Fix bytes dllname
Diffstat (limited to 'test/os_dep/linux/stdlib.py')
| -rwxr-xr-x | test/os_dep/linux/stdlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/os_dep/linux/stdlib.py b/test/os_dep/linux/stdlib.py index a205002b..ef890625 100755 --- a/test/os_dep/linux/stdlib.py +++ b/test/os_dep/linux/stdlib.py @@ -34,7 +34,7 @@ class TestLinuxStdlib(unittest.TestCase): jit.push_uint32_t(0) # ret_ad stdlib.xxx_sprintf(jit) ret = jit.get_str_ansi(buf) - self.assertEqual(ret, b"'coucou' 1111") + self.assertEqual(ret, "'coucou' 1111") if __name__ == '__main__': |