tests: remove assertion for '!uncertain' on .txt
authorRyan Lortie <desrt@desrt.ca>
Thu, 12 Sep 2013 18:38:08 +0000 (14:38 -0400)
committerRyan Lortie <desrt@desrt.ca>
Thu, 12 Sep 2013 18:40:24 +0000 (14:40 -0400)
Virtaal installs a mime package for various .po-like file formats, one
of which has the extension .txt.  This causes GLib to report ".txt"
files still as "text/plain" but no longer with complete certainty.

The result is that asserting !uncertain during the testsuite causes the
test to fail if Virtaal happens to be installed.

Remove this assertion.

gio/tests/contenttype.c

index ec46be4..e9ff2d3 100644 (file)
@@ -23,7 +23,6 @@ test_guess (void)
   res = g_content_type_guess ("foo.txt", NULL, 0, &uncertain);
   expected = g_content_type_from_mime_type ("text/plain");
   g_assert (g_content_type_equals (expected, res));
-  g_assert (!uncertain);
   g_free (res);
   g_free (expected);