From aeb825a14f4bb2119fad3ceeb70bba2f5d72e0ec Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 15 Nov 2010 10:10:05 -0800 Subject: [PATCH] Switch sense of test answer and question to the correct order. --- t/Session.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Session.t b/t/Session.t index 03a4702a8..a329a5f12 100644 --- a/t/Session.t +++ b/t/Session.t @@ -37,7 +37,7 @@ is($session->user->profileField('uiLevel'), 9, 'Set session user to Admin, check my $dupe = $session->duplicate; WebGUI::Test->addToCleanup($dupe); -is $session->getId, $dupe->getId, 'duplicated session has the same sessionId'; +is $dupe->getId, $session->getId, 'duplicated session has the same sessionId'; ################################################################ #