From 80a7f7bd53883aa219c710ac5f5efe34c6cab79c Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 9 Feb 2010 16:38:59 -0800 Subject: [PATCH] Fix a syntax error in t/Auth/LDAP.t --- t/Auth/LDAP.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Auth/LDAP.t b/t/Auth/LDAP.t index 405dbda85..89381ca69 100644 --- a/t/Auth/LDAP.t +++ b/t/Auth/LDAP.t @@ -123,7 +123,7 @@ or diag( $auth->error ); WebGUI::Test->addToCleanup( $session->user ); # Test the the automatically registered user is in the right group -ok( $session->user->isInGroup( $ldapGroup->getId ) ) +ok( $session->user->isInGroup( $ldapGroup->getId ) ); $session->setting->set('automaticLDAPRegistration', 0); $session->user({ userId => 1 }); # Restore Visitor