aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ephy-migration-test.c
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-09-03 22:41:25 +0800
committerClaudio Saavedra <csaavedra@igalia.com>2012-09-04 02:37:15 +0800
commit95eb18e603accc3dd23c32c9dfbdf79b1723d391 (patch)
treefaad294b055bdff5766a16aeda58a0fda228a688 /tests/ephy-migration-test.c
parent1afb0171665b4234ceb57f073a0834b6dc3e005d (diff)
downloadgsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.gz
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.bz2
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.lz
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.xz
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.tar.zst
gsoc2013-epiphany-95eb18e603accc3dd23c32c9dfbdf79b1723d391.zip
ephy-profile-utils: add a profile_dir parameter to ephy_profile_utils_do_migration()
This is passed further on to the migrator process. Right now this is unused. https://bugzilla.gnome.org/show_bug.cgi?id=681679
Diffstat (limited to 'tests/ephy-migration-test.c')
-rw-r--r--tests/ephy-migration-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ephy-migration-test.c b/tests/ephy-migration-test.c
index 3051f2d59..983e8ce48 100644
--- a/tests/ephy-migration-test.c
+++ b/tests/ephy-migration-test.c
@@ -36,7 +36,7 @@ test_do_migration_simple (void)
{
gboolean ret;
- ret = ephy_profile_utils_do_migration (-1, TRUE);
+ ret = ephy_profile_utils_do_migration (NULL, -1, TRUE);
g_assert (ret);
}
@@ -45,7 +45,7 @@ test_do_migration_invalid (void)
{
gboolean ret;
- ret = ephy_profile_utils_do_migration (EPHY_PROFILE_MIGRATION_VERSION + 1, TRUE);
+ ret = ephy_profile_utils_do_migration (NULL, EPHY_PROFILE_MIGRATION_VERSION + 1, TRUE);
g_assert (ret == FALSE);
}