From 93266a944c6ce526909055c4045d685636307ffa Mon Sep 17 00:00:00 2001 From: Inhere Date: Sun, 7 Aug 2022 16:53:00 +0800 Subject: [PATCH] chore: fix unit test error on encode data --- test/IniEncoderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/IniEncoderTest.php b/test/IniEncoderTest.php index dfcd790..9bc8f96 100644 --- a/test/IniEncoderTest.php +++ b/test/IniEncoderTest.php @@ -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); }