tests: fix the line config reset test case
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 12 Jan 2023 18:15:12 +0000 (19:15 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 18 Jan 2023 15:17:18 +0000 (16:17 +0100)
We're using testing wrong variables in the reset_config test case. We
should be checking the retrieved0 settings which are read back from
the line config object.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
tests/tests-line-config.c

index 4b5b3bd065362121d1f329b6627b47cde7f860e1..ed348c8079b23763ac872d35963cbe0771a9aac2 100644 (file)
@@ -175,9 +175,9 @@ GPIOD_TEST_CASE(reset_config)
        g_assert_nonnull(retrieved0);
        gpiod_test_return_if_failed();
 
-       g_assert_cmpint(gpiod_line_settings_get_direction(settings), ==,
+       g_assert_cmpint(gpiod_line_settings_get_direction(retrieved0), ==,
                        GPIOD_LINE_DIRECTION_INPUT);
-       g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
+       g_assert_cmpint(gpiod_line_settings_get_bias(retrieved0), ==,
                        GPIOD_LINE_BIAS_PULL_DOWN);
 
        gpiod_line_config_reset(config);