From 51cff37beab23e6ffda31e75771d4762017ebfe4 Mon Sep 17 00:00:00 2001 From: Razze Date: Sat, 11 Apr 2026 16:39:20 +0200 Subject: [PATCH] tests: fix copy-paste bug checking mid_high instead of highest --- tests/test-context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-context.c b/tests/test-context.c index f8013332..d1048a8a 100644 --- a/tests/test-context.c +++ b/tests/test-context.c @@ -332,7 +332,7 @@ test_context_merge_fs (void) g_assert_true (g_hash_table_lookup_extended (highest->filesystems, "host", NULL, &value)); g_assert_cmpint (GPOINTER_TO_INT (value), ==, FLATPAK_FILESYSTEM_MODE_NONE); - g_assert_false (g_hash_table_lookup_extended (mid_high->filesystems, "host-reset", NULL, NULL)); + g_assert_false (g_hash_table_lookup_extended (highest->filesystems, "host-reset", NULL, NULL)); g_assert_false (g_hash_table_lookup_extended (highest->filesystems, "/one", NULL, NULL)); g_assert_false (g_hash_table_lookup_extended (highest->filesystems, "/two", NULL, NULL)); g_assert_false (g_hash_table_lookup_extended (highest->filesystems, "/three", NULL, NULL));