Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tonysm committed Jun 14, 2024
1 parent 3592a34 commit d506c7c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/Http/ResponseMacrosTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -984,8 +984,6 @@ public function response_builder_fails_when_partial_is_missing_and_not_a_remove_
/** @test */
public function response_builder_doesnt_fail_when_partial_is_empty_string()
{
// $this->expectException(TurboStreamResponseFailedException::class);

$response = response()
->turboStream()
->update('example_target', '')
Expand All @@ -997,7 +995,7 @@ public function response_builder_doesnt_fail_when_partial_is_empty_string()
'content' => '',
])->render();

$this->assertTrue(true);
$this->assertEquals(trim($expected), trim($response->getContent()));
}

/** @test */
Expand Down

0 comments on commit d506c7c

Please sign in to comment.