Skip to content

Commit

Permalink
chore: fix unit test error on encode data
Browse files Browse the repository at this point in the history
  • Loading branch information
inhere committed Aug 7, 2022
1 parent 19b71e6 commit 93266a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/IniEncoderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function testEncode_simple(): void
$ini = Ini::encode($data);

$this->assertNotEmpty($ini);
$this->assertStringContainsString('[arrKey]', $ini);
$this->assertStringContainsString('arrKey = [', $ini);
vdump($ini);
}

Expand Down

0 comments on commit 93266a9

Please sign in to comment.