From a0e4e943f216507583b077278ae76e3dc24fb180 Mon Sep 17 00:00:00 2001 From: Guido Schmechel Date: Thu, 6 Oct 2022 21:21:32 +0200 Subject: [PATCH] [BUGFIX] Remove IE 6 condition from tests --- tests/php/View/SSViewerTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/php/View/SSViewerTest.php b/tests/php/View/SSViewerTest.php index cd1fe076c..aff7f8ac2 100644 --- a/tests/php/View/SSViewerTest.php +++ b/tests/php/View/SSViewerTest.php @@ -962,7 +962,7 @@ after'

test

'; $this->assertMatchesRegularExpression( - '/<\/head>/', + '/<\/head>/', $this->render($tmpl2) ); @@ -973,7 +973,7 @@ after'

test

'; $this->assertMatchesRegularExpression( - '/<\/head>/', + '/<\/head>/', $this->render($tmpl3) ); @@ -983,7 +983,7 @@ after' $response = new HTTPResponse($this->render($tmpl1)); $negotiator->html($response); $this->assertMatchesRegularExpression( - '/<\/head>/', + '/<\/head>/', $response->getBody() );