Skip to content

Commit e690998

Browse files
committed
Update ezFunctionsTest.php
Fix tests
1 parent 741dc53 commit e690998

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ezFunctionsTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,13 +174,13 @@ public function testGte()
174174
public function testIsNull()
175175
{
176176
$this->assertIsArray(isNull('field'));
177-
$this->assertArraySubset([2 => 'null'], isNull('field'));
177+
$this->assertArraySubset([2 => 'NULL'], isNull('field'));
178178
}
179179

180180
public function testIsNotNull()
181181
{
182182
$this->assertIsArray(isNotNull('field'));
183-
$this->assertArraySubset([2 => 'null'], isNotNull('field'));
183+
$this->assertArraySubset([2 => 'NULL'], isNotNull('field'));
184184
}
185185

186186
public function testLike()

0 commit comments

Comments
 (0)