summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2023-05-10 09:26:47 +0100
committerPhilip Withnall <pwithnall@endlessos.org>2023-05-10 09:26:47 +0100
commit8a68b795c12ce853d610ef759c2b9bb42faf45b9 (patch)
tree6c1e3ccee1e6af6132866f0e84a7673a999eba64
parentd6e57943ea411a9ae9df8036e12c87b6ade6d8ed (diff)
downloadglib-8a68b795c12ce853d610ef759c2b9bb42faf45b9.tar.gz
tests: Fix GIO file size tests as .desktop files have changed size
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
-rw-r--r--gio/tests/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/tests/file.c b/gio/tests/file.c
index 7fbb3ef0c..5ca2e678d 100644
--- a/gio/tests/file.c
+++ b/gio/tests/file.c
@@ -2613,7 +2613,7 @@ test_measure (void)
g_assert_true (ok);
g_assert_no_error (error);
- g_assert_cmpuint (num_bytes, ==, 74478);
+ g_assert_cmpuint (num_bytes, ==, 74469);
g_assert_cmpuint (num_dirs, ==, 6);
g_assert_cmpuint (num_files, ==, 32);
@@ -2696,7 +2696,7 @@ test_measure_async (void)
file = g_file_new_for_path (path);
g_free (path);
- data->expected_bytes = 74478;
+ data->expected_bytes = 74469;
data->expected_dirs = 6;
data->expected_files = 32;