Skip to content

Commit 22701d5

Browse files
committed
Remove redundant tests
1 parent fcec4e9 commit 22701d5

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/unit/ParserTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ public function testCreatingParserWithString()
1313
{
1414
$parser = new Parser("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; InfoPath.1)");
1515

16-
$this->assertTrue($parser instanceof \WhichBrowser\Parser);
17-
1816
$this->assertTrue($parser->isBrowser('Internet Explorer', '=', '6.0'));
1917
}
2018

@@ -24,8 +22,6 @@ public function testCreatingParserWithHeaders()
2422
'User-Agent' => 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; InfoPath.1)'
2523
]);
2624

27-
$this->assertTrue($parser instanceof \WhichBrowser\Parser);
28-
2925
$this->assertTrue($parser->isBrowser('Internet Explorer', '=', '6.0'));
3026
}
3127

@@ -37,8 +33,6 @@ public function testCreatingParserWithOptions()
3733
]
3834
]);
3935

40-
$this->assertTrue($parser instanceof \WhichBrowser\Parser);
41-
4236
$this->assertTrue($parser->isBrowser('Internet Explorer', '=', '6.0'));
4337
}
4438

0 commit comments

Comments
 (0)