Skip to content

Commit 01c4e0a

Browse files
committed
Fix test
1 parent 5253303 commit 01c4e0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ModelTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ public function testPushPull()
339339
$result = User::where('_id', $user->_id)->push('tags', 'tag1');
340340
$user = User::where('_id', $user->_id)->first();
341341

342-
#$this->assertTrue(is_int($result));
342+
$this->assertTrue(is_int($result));
343343
$this->assertTrue(is_array($user->tags));
344344
$this->assertEquals(1, count($user->tags));
345345
}

0 commit comments

Comments
 (0)