Skip to content

Commit

Permalink
Fix test expectations
Browse files Browse the repository at this point in the history
  • Loading branch information
gastonfournier committed Sep 25, 2024
1 parent b586071 commit ddc0ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Bootstrap/FileBootstrapProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function testUnreadableFile()
$file = $this->createTemporaryFile();
chmod($file, 0222);
$instance = new FileBootstrapProvider($file);
$this->expectException(RuntimeException::class);
$this->expectException(JsonException::class);
$instance->getBootstrap();
}
}

0 comments on commit ddc0ab6

Please sign in to comment.