From 0615180141e68e47ed151763207abb99b2a0e0e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Feb 2025 10:42:47 -0700 Subject: [PATCH] Auto-format code changes (#735) Auto-format code using Clang-Format Co-authored-by: GitHub Actions --- test/unit/solver/test_state.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/unit/solver/test_state.cpp b/test/unit/solver/test_state.cpp index 516dac120..d1dbb8efe 100644 --- a/test/unit/solver/test_state.cpp +++ b/test/unit/solver/test_state.cpp @@ -2,7 +2,8 @@ #include -TEST(State, DefaultConstructor){ +TEST(State, DefaultConstructor) +{ EXPECT_NO_THROW(micm::State state); EXPECT_NO_THROW(std::vector> states(10)); }