From ddd51408322789ac7f6aa98fc13ec1ddbe0f2be6 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 24 Jan 2023 15:41:01 +0000 Subject: [PATCH] trivial: Fix tests to include 'emulated' --- libfwupd/fwupd-self-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfwupd/fwupd-self-test.c b/libfwupd/fwupd-self-test.c index dc753f990..2468efbe9 100644 --- a/libfwupd/fwupd-self-test.c +++ b/libfwupd/fwupd-self-test.c @@ -157,7 +157,7 @@ fwupd_enums_func(void) } /* bitfield */ - for (guint64 i = 1; i <= FWUPD_DEVICE_FLAG_UNSIGNED_PAYLOAD; i *= 2) { + for (guint64 i = 1; i <= FWUPD_DEVICE_FLAG_EMULATED; i *= 2) { const gchar *tmp = fwupd_device_flag_to_string(i); if (tmp == NULL) g_warning("missing device flag 0x%x", (guint)i);