summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2017-02-11 08:11:42 +0000
committerGitHub <noreply@github.com>2017-02-11 08:11:42 +0000
commit7e263df7319fb4ce59617600e6ced416c13dfa3e (patch)
tree132b7ba51f6f6c5f8f1b68c87b8e1fd1a0f54e22
parent297999e05a0fe547651dd8c8c28cff15377ec8dd (diff)
parent428a17c8531f34b52fc3431147b92c8f2e558077 (diff)
downloadenchant-7e263df7319fb4ce59617600e6ced416c13dfa3e.tar.gz
Merge pull request #83 from rrthomas/master
Make a commented-out test work again with new API
-rw-r--r--tests/enchantxx.test.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/enchantxx.test.cpp b/tests/enchantxx.test.cpp
index bb9a153..0b60ea1 100644
--- a/tests/enchantxx.test.cpp
+++ b/tests/enchantxx.test.cpp
@@ -84,15 +84,13 @@ run_dict_tests (enchant::Dict * dict)
dict->check (check_checks[i]) == false);
}
-#if 0
printf ("Adding 'helllo' to personal\n");
- dict->add_to_pwl ("helllo");
+ dict->add ("helllo");
for (i = 0; i < (sizeof (check_checks) / sizeof (check_checks[0])); i++)
{
printf ("enchant_dict_check (%s): %d\n", check_checks[i],
dict->check (check_checks[i]) == false);
}
-#endif
}
int