Skip to content

Commit

Permalink
print one more error message
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters authored Nov 7, 2021
1 parent 2d5f362 commit 51bfe25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ign_src_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,8 @@ TEST_P(DownloadCollectionTest, AllItems)
// Check output
EXPECT_NE(stdOutBuffer.str().find("Download succeeded"), std::string::npos)
<< stdOutBuffer.str();
EXPECT_TRUE(stdErrBuffer.str().empty());
EXPECT_TRUE(stdErrBuffer.str().empty())
<< stdErrBuffer.str();

// Check files
// Model: Backpack
Expand Down

0 comments on commit 51bfe25

Please sign in to comment.