diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2013-08-30 03:26:37 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2013-08-30 04:38:43 +0800 |
commit | 60e3d891e95b961456b2b803053ac47d072a3242 (patch) | |
tree | 3e5fe9f95b845a510ad191fa9ce0e28202a8bfbf | |
parent | 154a5443ec857d9cca0ccc34ac34692f87330691 (diff) | |
download | gsoc2013-epiphany-60e3d891e95b961456b2b803053ac47d072a3242.tar gsoc2013-epiphany-60e3d891e95b961456b2b803053ac47d072a3242.tar.gz gsoc2013-epiphany-60e3d891e95b961456b2b803053ac47d072a3242.tar.bz2 gsoc2013-epiphany-60e3d891e95b961456b2b803053ac47d072a3242.tar.lz gsoc2013-epiphany-60e3d891e95b961456b2b803053ac47d072a3242.tar.xz gsoc2013-epiphany-60e3d891e95b961456b2b803053ac47d072a3242.tar.zst gsoc2013-epiphany-60e3d891e95b961456b2b803053ac47d072a3242.zip |
ephy-encodings-test.c: shutdown the helper files at the end
Now that the shell holds a reference to the bookmark files it
is not possible to shutdown the helper files before shell has
been disposed. Actually, that never made sense.
-rw-r--r-- | tests/ephy-encodings-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ephy-encodings-test.c b/tests/ephy-encodings-test.c index ffa88e5ab..da85d0c50 100644 --- a/tests/ephy-encodings-test.c +++ b/tests/ephy-encodings-test.c @@ -100,8 +100,8 @@ main (int argc, char *argv[]) ret = g_test_run (); - ephy_file_helpers_shutdown (); g_object_unref (ephy_shell_get_default ()); + ephy_file_helpers_shutdown (); return ret; } |