summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDom Lachowicz <domlachowicz@gmail.com>2003-07-19 16:40:27 +0000
committerDom Lachowicz <domlachowicz@gmail.com>2003-07-19 16:40:27 +0000
commitada51c380ce436f4b0bc747de760fb2b367103a9 (patch)
tree47e2fad0af9b198ba533af622222e820e71af486 /tests
parenta2464f347ecdf34cbb4ee53fc8f2c6d7e08dbba7 (diff)
downloadenchant-ada51c380ce436f4b0bc747de760fb2b367103a9.tar.gz
allow for provider ordering
git-svn-id: svn+ssh://svn.abisource.com/svnroot/enchant/trunk@20751 bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
Diffstat (limited to 'tests')
-rw-r--r--tests/test-enchant.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test-enchant.c b/tests/test-enchant.c
index 2944fb3..603cbbc 100644
--- a/tests/test-enchant.c
+++ b/tests/test-enchant.c
@@ -49,8 +49,8 @@ run_dict_tests (EnchantDict * dict)
size_t n_suggs;
size_t i, j;
- const char *check_checks[] = { "hallo", "halllo" };
- const char *sugg_checks[] = { "halllo", "taag" };
+ const char *check_checks[] = { "hello", "helllo" };
+ const char *sugg_checks[] = { "helllo", "taag" };
for (i = 0; i < (sizeof (check_checks) / sizeof (check_checks[0])); i++)
{
@@ -81,11 +81,11 @@ main (int argc, char **argv)
broker = enchant_broker_init ();
- dict = enchant_broker_request_dict (broker, "de_DE");
+ dict = enchant_broker_request_dict (broker, "en_US");
if (!dict)
{
- fprintf (stderr, "Couldn't create dictionary for de_DE\n");
+ fprintf (stderr, "Couldn't create dictionary for en_US\n");
}
else
{