From 4f07a30a6bf89105ce81f924266770694887f7cc Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Wed, 13 Jan 2010 00:51:25 +0000 Subject: [PATCH] MINOR: Fixed CMSMainTest to be more flexible about modules altering the buttons. git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@96827 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tests/CMSMainTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMSMainTest.php b/tests/CMSMainTest.php index 3ab1fd4f..5de6d15c 100644 --- a/tests/CMSMainTest.php +++ b/tests/CMSMainTest.php @@ -127,7 +127,7 @@ class CMSMainTest extends FunctionalTest { $this->assertTrue($livePage->canDelete()); // Check that the 'restore' button exists as a simple way of checking that the correct page is returned. - $this->assertRegExp('/]+type="submit"[^>]+name="action_restore"/i', $response->getBody()); + $this->assertRegExp('/]+type="submit"[^>]+name="action_(restore|revert)"/i', $response->getBody()); } /**