Skip to content

Commit

Permalink
apply coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-frey committed Sep 3, 2023
1 parent dc5b9ff commit 5da9b11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions unit_tests/PIC/PIC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ TYPED_TEST_CASE(PICTest, Tests);

TYPED_TEST(PICTest, Scatter) {
auto& field = this->field;
auto& bunch = this->bunch;
auto& bunch = this->bunch;
auto& nParticles = this->nParticles;

*field = 0.0;
Expand All @@ -134,7 +134,7 @@ TYPED_TEST(PICTest, Scatter) {

TYPED_TEST(PICTest, Gather) {
auto& field = this->field;
auto& bunch = this->bunch;
auto& bunch = this->bunch;
auto& nParticles = this->nParticles;

*field = 1.0;
Expand Down
2 changes: 1 addition & 1 deletion unit_tests/Particle/ParticleSendRecv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ TYPED_TEST_CASE(ParticleSendRecv, Tests);

TYPED_TEST(ParticleSendRecv, SendAndRecieve) {
const auto nParticles = this->nParticles;
auto& bunch = this->bunch;
auto& bunch = this->bunch;

bunch->update();
// bunch->update();
Expand Down

0 comments on commit 5da9b11

Please sign in to comment.