tests: Fix error strings

They were copy-pasted from e1000e and never changed.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20220902165126.1482-7-quintela@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
master
Juan Quintela 2022-09-02 18:51:24 +02:00 committed by Thomas Huth
parent a772ddc1c0
commit a65c9527fd
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ static void *e1000_get_driver(void *obj, const char *interface)
return &e1000->dev;
}
fprintf(stderr, "%s not present in e1000e\n", interface);
fprintf(stderr, "%s not present in e1000\n", interface);
g_assert_not_reached();
}

View File

@ -28,7 +28,7 @@ static void *es1370_get_driver(void *obj, const char *interface)
return &es1370->dev;
}
fprintf(stderr, "%s not present in e1000e\n", interface);
fprintf(stderr, "%s not present in es1370\n", interface);
g_assert_not_reached();
}