diff options
author | Pavel Březina <pbrezina@redhat.com> | 2013-08-27 14:53:03 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-17 16:02:19 +0200 |
commit | 588a67a6f14cec797a7bda2682115c5123598f37 (patch) | |
tree | 0b4bf8120f71457a8ba45d5295156868fcd5b0ed /src/tests | |
parent | a473fb88e6015cf0ccbd2e9005c7e6acca18f452 (diff) | |
download | sssd-588a67a6f14cec797a7bda2682115c5123598f37.tar.gz sssd-588a67a6f14cec797a7bda2682115c5123598f37.tar.bz2 sssd-588a67a6f14cec797a7bda2682115c5123598f37.zip |
simple access tests: fix typos
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/simple_access-tests.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tests/simple_access-tests.c b/src/tests/simple_access-tests.c index d1a6056a..a7a7e276 100644 --- a/src/tests/simple_access-tests.c +++ b/src/tests/simple_access-tests.c @@ -135,7 +135,7 @@ void teardown_simple(void) fail_unless(test_ctx != NULL, "Simple context already freed."); ret = talloc_free(test_ctx); test_ctx = NULL; - fail_unless(ret == 0, "Connot free simple context."); + fail_unless(ret == 0, "Cannot free simple context."); } void setup_simple_group(void) @@ -568,22 +568,22 @@ START_TEST(test_provider_init) /* allow users */ ret = confdb_add_param(test_ctx->confdb, true, "config/domain/LOCAL", "simple_allow_users", val); - fail_if(ret != EOK, "Could setup allow users list"); + fail_if(ret != EOK, "Could not setup allow users list"); /* deny users */ ret = confdb_add_param(test_ctx->confdb, true, "config/domain/LOCAL", "simple_deny_users", val); - fail_if(ret != EOK, "Could setup deny users list"); + fail_if(ret != EOK, "Could not setup deny users list"); /* allow groups */ ret = confdb_add_param(test_ctx->confdb, true, "config/domain/LOCAL", "simple_allow_groups", val); - fail_if(ret != EOK, "Could setup allow groups list"); + fail_if(ret != EOK, "Could not setup allow groups list"); /* deny groups */ ret = confdb_add_param(test_ctx->confdb, true, "config/domain/LOCAL", "simple_deny_groups", val); - fail_if(ret != EOK, "Could setup deny groups list"); + fail_if(ret != EOK, "Could not setup deny groups list"); ret = sssm_simple_access_init(test_ctx->be_ctx, &bet_ops, (void**)&ctx); fail_if(ret != EOK); |