Skip to content

Commit 1b2efa8

Browse files
committed
Fix assertion after switching to PHPUnit 9
1 parent 824e885 commit 1b2efa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tests/DnsTemplateTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function testCreate()
3434
'host' => 'test.create',
3535
'value' => 'value',
3636
]);
37-
$this->assertInternalType('integer', $dns->id);
37+
$this->assertIsInt($dns->id);
3838
$this->assertGreaterThan(0, $dns->id);
3939
$this->assertEquals(0, $dns->siteId);
4040
$this->assertEquals(0, $dns->siteAliasId);

0 commit comments

Comments
 (0)