From 1b836563656bcb4348edb21b0277c77c83ad1fae Mon Sep 17 00:00:00 2001 From: Shish Date: Thu, 18 Feb 2010 16:24:31 +0000 Subject: [PATCH] 403, not 503 --- contrib/blotter/test.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/blotter/test.php b/contrib/blotter/test.php index 6a336265..1e532906 100644 --- a/contrib/blotter/test.php +++ b/contrib/blotter/test.php @@ -9,11 +9,11 @@ class BlotterTest extends SCoreWebTestCase { function testDenial() { $this->get_page("blotter/editor"); - $this->assert_response(503); + $this->assert_response(403); $this->get_page("blotter/add"); - $this->assert_response(503); + $this->assert_response(403); $this->get_page("blotter/remove"); - $this->assert_response(503); + $this->assert_response(403); } function testAddViewRemove() {