diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2021-06-08 21:01:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-08 21:01:08 +0200 |
| commit | dd4bc5f7acfbfa510afc56d2e1d1f2e15e9bedfa (patch) | |
| tree | 8d54a9b3e8a199d578aef71025d16c372c24f6b7 /test/core/locationdb.py | |
| parent | 6285271a95f3ec9815728fb808a69bb21b50f770 (diff) | |
| parent | 2a3c5a4f9db4d4d6e6cadbd5886218054efe6261 (diff) | |
| download | miasm-dd4bc5f7acfbfa510afc56d2e1d1f2e15e9bedfa.tar.gz miasm-dd4bc5f7acfbfa510afc56d2e1d1f2e15e9bedfa.zip | |
Merge pull request #1370 from serpilliere/symbols_str
Symbols are str instead of bytes
Diffstat (limited to 'test/core/locationdb.py')
| -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) |