Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Clang Robot committed Aug 22, 2023
1 parent addf3be commit 8de4152
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions tests/cxx/integration_tests/blank_test.cpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
#define CATCH_CONFIG_MAIN
#include <iostream>
#include <catch2/catch.hpp>
#include <iostream>

int print_and_return(int ii) {
std::cout<<"This is only a blank model for an integration test."<<std::endl;
std::cout << "This is only a blank model for an integration test."
<< std::endl;
return 0;
}

TEST_CASE("Blank test", "[classic]")
{
REQUIRE(print_and_return(0) == 0);
}
TEST_CASE("Blank test", "[classic]") { REQUIRE(print_and_return(0) == 0); }

0 comments on commit 8de4152

Please sign in to comment.