From 07e933883077052882482271aefbb5db88301135 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 18 Jan 2017 13:25:09 +0100 Subject: [PATCH] Fix filter test matching old icinga.org URLS refs #2687 --- test/php/library/Icinga/Data/Filter/FilterTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/php/library/Icinga/Data/Filter/FilterTest.php b/test/php/library/Icinga/Data/Filter/FilterTest.php index 1101c9219..0063dd1a1 100644 --- a/test/php/library/Icinga/Data/Filter/FilterTest.php +++ b/test/php/library/Icinga/Data/Filter/FilterTest.php @@ -124,7 +124,7 @@ class FilterTest extends BaseTestCase public function testWildcardFilterMatchesEnding() { $this->assertTrue( - Filter::where('service', '*org')->matches($this->row(1)) + Filter::where('service', '*com')->matches($this->row(1)) ); }