From 65c023c1e1fc44c645e08f3f4aa5275277ac4388 Mon Sep 17 00:00:00 2001 From: brinn <brinn> Date: Tue, 22 Jul 2008 13:44:57 +0000 Subject: [PATCH] fix: unit test expectations SVN: 7397 --- .../authentication/crowd/CrowdAuthenticationServiceTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java b/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java index b80efc5683f..c0d58954fd6 100644 --- a/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java +++ b/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java @@ -280,7 +280,8 @@ public class CrowdAuthenticationServiceTest private String createLogEntry(final String level, final String message) { - return level + " OPERATION." + authenticationService.getClass().getName() + " - " + message; + return level + " OPERATION." + authenticationService.getClass().getSimpleName() + " - " + + message; } private String createXMLElement(final String element, final String content) -- GitLab