Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bmoffatt committed Jan 23, 2024
1 parent 101ae1a commit 58ccd43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/runtime_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ TEST_F(LambdaRuntimeTest, crash)
std::ifstream os_release("/etc/os-release");
if (os_release.is_open()) {
std::string line;
while(getline(os_release, line)) {
if (line == "PRETTY_NAME=\"Alpine Linux v3.19\""); {
while (getline(os_release, line)) {
if (line == "PRETTY_NAME=\"Alpine Linux v3.19\"") {
GTEST_SKIP() << "Skipping crash test";
}
}
Expand Down

0 comments on commit 58ccd43

Please sign in to comment.