test: fix the suite name for the EI integration tests

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2020-08-12 14:36:10 +10:00
parent efa01ffc38
commit dd426757fb

View file

@ -261,7 +261,7 @@ static MunitTest ei_tests[] = {
{ .name = "/device/add_zero_caps", .test = test_ei_device_add_zero_caps },
};
static const MunitSuite iotest_suite = {
static const MunitSuite ei_suite = {
"/ei",
ei_tests,
NULL,
@ -272,5 +272,5 @@ static const MunitSuite iotest_suite = {
int
main(int argc, char* argv[MUNIT_ARRAY_PARAM(argc + 1)])
{
return munit_suite_main(&iotest_suite, NULL, argc, argv);
return munit_suite_main(&ei_suite, NULL, argc, argv);
}