Skip to content

Commit f90ed37

Browse files
committed
wip
1 parent 55722e5 commit f90ed37

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/Modifiers/AntlersTest.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ public function trusted_argument_does_not_escalate_when_current_runtime_is_untru
2929
{
3030
GlobalRuntimeState::$isEvaluatingUserData = true;
3131

32-
// AntlersFacade::shouldReceive('parse')
33-
// ->once()
34-
// ->with('{{ foo }}', ['foo' => 'bar'], false)
35-
// ->andReturn('parsed');
36-
3732
$this->assertSame('foo bar ', $this->modify('foo {{ foo }} {{$ "hello" $}}', ['foo' => 'bar'], ['trusted']));
3833
}
3934

@@ -42,11 +37,6 @@ public function trusted_argument_parses_in_trusted_mode_when_current_runtime_is_
4237
{
4338
GlobalRuntimeState::$isEvaluatingUserData = false;
4439

45-
// AntlersFacade::shouldReceive('parse')
46-
// ->once()
47-
// ->with('{{ foo }}', ['foo' => 'bar'], true)
48-
// ->andReturn('parsed');
49-
5040
$this->assertSame('foo bar hello', $this->modify('foo {{ foo }} {{$ "hello" $}}', ['foo' => 'bar'], ['trusted']));
5141
}
5242

0 commit comments

Comments
 (0)