diff options
| author | Romain Lesteven <romain.lesteven@gatewatcher.com> | 2021-05-05 11:02:33 +0200 |
|---|---|---|
| committer | Romain Lesteven <romain.lesteven@gatewatcher.com> | 2021-05-05 11:02:33 +0200 |
| commit | e0abd462cefd168ae82426533c1a822254aca374 (patch) | |
| tree | 486f3b67c279b452085943864dea336c760106aa /test/os_dep/linux/test_env.py | |
| parent | acfb6e552b287cc91d2060456be4ea7071b9ba8e (diff) | |
| download | miasm-e0abd462cefd168ae82426533c1a822254aca374.tar.gz miasm-e0abd462cefd168ae82426533c1a822254aca374.zip | |
Replace jitter.run boolean by jitter.running
Diffstat (limited to 'test/os_dep/linux/test_env.py')
| -rw-r--r-- | test/os_dep/linux/test_env.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/os_dep/linux/test_env.py b/test/os_dep/linux/test_env.py index 5bf3d2a0..c9eb53dd 100644 --- a/test/os_dep/linux/test_env.py +++ b/test/os_dep/linux/test_env.py @@ -36,4 +36,4 @@ sb = sandbox(loc_db, options.filename, options, globals()) # Run sb.run() -assert(sb.jitter.run is False) +assert(sb.jitter.running is False) |