diff options
author | Xan Lopez <xan@igalia.com> | 2012-02-23 18:54:14 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-02-23 18:57:23 +0800 |
commit | ac60d09d83f3e58a85717bff93fed1c7feab5d6e (patch) | |
tree | a4a18f377d998bbe41f10e5dfd9ef8812f442669 | |
parent | afe6f48303930351029e6c1d18f53d910324a2eb (diff) | |
download | gsoc2013-epiphany-ac60d09d83f3e58a85717bff93fed1c7feab5d6e.tar gsoc2013-epiphany-ac60d09d83f3e58a85717bff93fed1c7feab5d6e.tar.gz gsoc2013-epiphany-ac60d09d83f3e58a85717bff93fed1c7feab5d6e.tar.bz2 gsoc2013-epiphany-ac60d09d83f3e58a85717bff93fed1c7feab5d6e.tar.lz gsoc2013-epiphany-ac60d09d83f3e58a85717bff93fed1c7feab5d6e.tar.xz gsoc2013-epiphany-ac60d09d83f3e58a85717bff93fed1c7feab5d6e.tar.zst gsoc2013-epiphany-ac60d09d83f3e58a85717bff93fed1c7feab5d6e.zip |
ephy-embed-utils-test: unbreak the normalization tests
They were testing the same URI again and again...
-rw-r--r-- | tests/ephy-embed-utils-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ephy-embed-utils-test.c b/tests/ephy-embed-utils-test.c index 122087f26..c4086e4da 100644 --- a/tests/ephy-embed-utils-test.c +++ b/tests/ephy-embed-utils-test.c @@ -142,8 +142,8 @@ main (int argc, char *argv[]) test_name = g_strconcat ("/embed/ephy-embed-utils/normalize_", test.name, NULL); - g_test_add_data_func (test_name, &test, - (GTestDataFunc) test_normalize_address); + g_test_add_data_func (test_name, tests_normalize + i, + (GTestDataFunc)test_normalize_address); g_free (test_name); } |