Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Davknapp committed Dec 13, 2024
1 parent eaca0b3 commit 59a7562
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions test/t8_forest_incomplete/t8_gtest_recursive.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class recursive_tree: public testing::TestWithParam<t8_eclass_t> {
void
TearDown () override
{
if (tree_class != T8_ECLASS_ZERO){
if (tree_class != T8_ECLASS_ZERO) {
t8_forest_unref (&forest);
t8_forest_unref (&forest_base);
}
Expand Down Expand Up @@ -150,5 +150,4 @@ TEST_P (recursive_tree, test_recursive)
ASSERT_TRUE (t8_forest_is_equal (forest, forest_base));
}

INSTANTIATE_TEST_SUITE_P (t8_gtest_recursive, recursive_tree, AllSchemes,
print_eclass);
INSTANTIATE_TEST_SUITE_P (t8_gtest_recursive, recursive_tree, AllSchemes, print_eclass);
6 changes: 3 additions & 3 deletions test/t8_gtest_schemes.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <gtest/gtest.h>

t8_scheme *
t8_scheme_all_schemes(void)
t8_scheme_all_schemes (void)
{
t8_scheme_builder builder;

Expand All @@ -44,6 +44,6 @@ t8_scheme_all_schemes(void)
return builder.build_scheme ();
}

#define AllSchemes ::testing::Range(T8_ECLASS_ZERO, T8_ECLASS_COUNT)
#define AllSchemes ::testing::Range (T8_ECLASS_ZERO, T8_ECLASS_COUNT)

#endif /* T8_GTEST_SCHEMES_HXX */
#endif /* T8_GTEST_SCHEMES_HXX */
2 changes: 1 addition & 1 deletion test/t8_schemes/t8_gtest_descendant.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class class_schemes_descendant: public testing::TestWithParam<t8_eclass_t> {
{
tree_class = GetParam ();

scheme = t8_scheme_all_schemes();
scheme = t8_scheme_all_schemes ();
scheme->element_new (tree_class, 1, &elem);
scheme->element_new (tree_class, 1, &desc);
scheme->element_new (tree_class, 1, &test);
Expand Down

0 comments on commit 59a7562

Please sign in to comment.