Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasDuswald committed Feb 26, 2024
1 parent bbe5789 commit 5af66ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/core/diffusion_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1135,10 +1135,10 @@ TEST(DiffusionTest, EulerNeumannNonZeroBoundaries) {
TEST(DiffusionTest, EulerPeriodicBoundaries) {
double simulation_time_step{0.1};
auto set_param = [&](Param* param) {
param->bound_space = Param::BoundSpaceMode::kClosed;
param->min_bound = -50;
param->max_bound = 50;
param->diffusion_boundary_condition = "Periodic";
param->bound_space = Param::BoundSpaceMode::kClosed;
param->min_bound = -50;
param->max_bound = 50;
param->diffusion_boundary_condition = "Periodic";
};
Simulation simulation(TEST_NAME, set_param);

Expand Down

0 comments on commit 5af66ab

Please sign in to comment.