diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-10-09 17:47:00 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2021-06-08 08:11:01 +0200 |
| commit | 2a3c5a4f9db4d4d6e6cadbd5886218054efe6261 (patch) | |
| tree | 8d54a9b3e8a199d578aef71025d16c372c24f6b7 /test/core/locationdb.py | |
| parent | 6285271a95f3ec9815728fb808a69bb21b50f770 (diff) | |
| download | miasm-2a3c5a4f9db4d4d6e6cadbd5886218054efe6261.tar.gz miasm-2a3c5a4f9db4d4d6e6cadbd5886218054efe6261.zip | |
Symbols are str instead of bytes
Diffstat (limited to '')
| -rw-r--r-- | test/core/locationdb.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/locationdb.py b/test/core/locationdb.py index b6d7d8e0..0502f0df 100644 --- a/test/core/locationdb.py +++ b/test/core/locationdb.py @@ -58,9 +58,9 @@ loc_db.consistency_check() # Names manipulation loc_key5 = loc_db.add_location() -name1 = b"name1" -name2 = b"name2" -name3 = b"name3" +name1 = "name1" +name2 = "name2" +name3 = "name3" assert len(loc_db.get_location_names(loc_key5)) == 0 loc_db.add_location_name(loc_key5, name1) loc_db.add_location_name(loc_key5, name2) |