Skip to content

Commit a3e69ca

Browse files
Merge branch '4.3'
2 parents b674e23 + afb6dd2 commit a3e69ca

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

tests/Dotenv/Parser/LinesTest.php

-26
Original file line numberDiff line numberDiff line change
@@ -49,30 +49,4 @@ public function testProcessQuotes()
4949

5050
self::assertSame($expected, Lines::process($result->success()->get()));
5151
}
52-
53-
public function testProcessClosingSlash()
54-
{
55-
$lines = [
56-
'SPVAR5="test some escaped characters like a quote \" or maybe a backslash \\" # not escaped',
57-
];
58-
59-
$expected = [
60-
'SPVAR5="test some escaped characters like a quote \" or maybe a backslash \\" # not escaped',
61-
];
62-
63-
self::assertSame($expected, $lines);
64-
}
65-
66-
public function testProcessBadQuotes()
67-
{
68-
$lines = [
69-
"TEST=\"erert\nTEST='erert\n",
70-
];
71-
72-
$expected = [
73-
"TEST=\"erert\nTEST='erert\n",
74-
];
75-
76-
self::assertSame($expected, $lines);
77-
}
7852
}

0 commit comments

Comments
 (0)