Skip to content

Commit

Permalink
fix after conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger authored Oct 30, 2024
1 parent ab9267b commit 0790c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/UnitTests/Core/Propagator/MultiStepperTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ void test_multi_stepper_surface_status_update() {
cmps(2, {0.5, BoundVector::Zero(), std::nullopt});
std::get<BoundVector>(cmps[0])[eBoundTheta] = std::numbers::pi / 2.;
std::get<BoundVector>(cmps[1])[eBoundPhi] = std::numbers::pi;
std::get<BoundVector>(cmps[1])[eBoundTheta] = -std::numbers::pi / 2.;
std::get<BoundVector>(cmps[1])[eBoundTheta] = std::numbers::pi / 2.;
std::get<BoundVector>(cmps[0])[eBoundQOverP] = 1.0;
std::get<BoundVector>(cmps[1])[eBoundQOverP] = 1.0;

Expand Down Expand Up @@ -566,7 +566,7 @@ void test_component_bound_state() {
cmps(2, {0.5, BoundVector::Zero(), std::nullopt});
std::get<BoundVector>(cmps[0])[eBoundTheta] = std::numbers::pi / 2.;
std::get<BoundVector>(cmps[1])[eBoundPhi] = std::numbers::pi;
std::get<BoundVector>(cmps[1])[eBoundTheta] = -std::numbers::pi / 2.;
std::get<BoundVector>(cmps[1])[eBoundTheta] = std::numbers::pi / 2.;
std::get<BoundVector>(cmps[0])[eBoundQOverP] = 1.0;
std::get<BoundVector>(cmps[1])[eBoundQOverP] = 1.0;

Expand Down

0 comments on commit 0790c3f

Please sign in to comment.