Skip to content

Commit c5e11d9

Browse files
author
e1himself
committed
Add more false positive lime tests
1 parent 89ba1fd commit c5e11d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/unit/test/limeTestTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require_once(__DIR__.'/../../bootstrap/unit.php');
44

5-
$t = new lime_test(26);
5+
$t = new lime_test(28);
66

77
$t->comment('A. Equal numbers');
88
$t->is(1, 1);
@@ -41,3 +41,5 @@
4141
$t->comment('F. Values that should not be equal');
4242
$t->isnt(true, 'Hello');
4343
$t->isnt('Hello', true);
44+
$t->isnt('Hello', 0);
45+
$t->isnt(0, 'Hello');

0 commit comments

Comments
 (0)