Skip to content

Commit afb6dd2

Browse files
[4.3] Dropped invalid tests (#544)
1 parent c349cad commit afb6dd2

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

tests/Dotenv/LinesTest.php

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

4141
self::assertSame($expected, Lines::process(preg_split("/(\r\n|\n|\r)/", $content)));
4242
}
43-
44-
public function testProcessClosingSlash()
45-
{
46-
$lines = [
47-
'SPVAR5="test some escaped characters like a quote \" or maybe a backslash \\" # not escaped',
48-
];
49-
50-
$expected = [
51-
'SPVAR5="test some escaped characters like a quote \" or maybe a backslash \\" # not escaped',
52-
];
53-
54-
self::assertSame($expected, $lines);
55-
}
56-
57-
public function testProcessBadQuotes()
58-
{
59-
$lines = [
60-
"TEST=\"erert\nTEST='erert\n",
61-
];
62-
63-
$expected = [
64-
"TEST=\"erert\nTEST='erert\n",
65-
];
66-
67-
self::assertSame($expected, $lines);
68-
}
6943
}

0 commit comments

Comments
 (0)