Fix filter test matching old icinga.org URLS

refs #2687
This commit is contained in:
Eric Lippmann 2017-01-18 13:25:09 +01:00
parent 1f7bf97a7e
commit 07e9338830
1 changed files with 1 additions and 1 deletions

View File

@ -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))
);
}