From 197fe80857a0dc8b8a6d583562dfd23c2296d991 Mon Sep 17 00:00:00 2001 From: Alexander Mikhaylenko Date: Fri, 24 Apr 2020 23:50:43 +0500 Subject: [PATCH] testsuite: Fix swapped params in notify test The expected and counted params are swapped in literally every call, so swapping the params to match them. --- testsuite/gtk/notify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c index 1c37c8cc66..62c22f2920 100644 --- a/testsuite/gtk/notify.c +++ b/testsuite/gtk/notify.c @@ -26,8 +26,8 @@ static void assert_notifies (GObject *object, const char *property, - guint expected, - guint counted) + guint counted, + guint expected) { if (expected == counted) return;