Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 30, 2023
1 parent d3a0f8c commit 8a6d3da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/version.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

TEST_CASE("cpp-terminal version")
{
CHECK(Term::Version::major() >0);
CHECK(Term::Version::minor() >=0);
CHECK(Term::Version::patch() >=0);
CHECK(Term::Version::major() > 0);
CHECK(Term::Version::minor() >= 0);
CHECK(Term::Version::patch() >= 0);
CHECK(Term::Version::string() == std::to_string(Term::Version::major()) + "." + std::to_string(Term::Version::minor()) + "." + std::to_string(Term::Version::patch()));
CHECK(Term::homepage()=="https://github.com/jupyter-xeus/cpp-terminal");
CHECK(Term::homepage() == "https://github.com/jupyter-xeus/cpp-terminal");
}

0 comments on commit 8a6d3da

Please sign in to comment.