diff options
| author | AKSUM <51446624+AKSUMRUS@users.noreply.github.com> | 2024-03-26 18:14:29 +0300 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2024-03-26 16:39:35 +0000 |
| commit | 454571b6a16598f5a6e015b9fb1a04932bce7ab9 (patch) | |
| tree | e5043b7660dbc676bc464477b7fda86dfab477d5 /syz-verifier | |
| parent | ab1a2a7121a0a1333b354fa04741918742786078 (diff) | |
syz-verifier: fix a typo in tests
Diffstat (limited to 'syz-verifier')
| -rw-r--r-- | syz-verifier/exectask_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-verifier/exectask_test.go b/syz-verifier/exectask_test.go index 3ffc8a94f..b8e73a587 100644 --- a/syz-verifier/exectask_test.go +++ b/syz-verifier/exectask_test.go @@ -15,7 +15,7 @@ func TestExecTask_MakeDelete(t *testing.T) { } task := taskFactory.MakeExecTask(program) if l := taskFactory.ExecTasksQueued(); l != 1 { - t.Errorf("expected map len is 0, current size is %v", l) + t.Errorf("expected map len is 1, current size is %v", l) } taskFactory.DeleteExecTask(task) if l := taskFactory.ExecTasksQueued(); l != 0 { |
