Skip to content

Commit

Permalink
Autoformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
MicheleMichetti committed Mar 10, 2024
1 parent 3e4906d commit 4114403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit-tests/ui_Movement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ bool MovingUp(int numberOfSteps) {
utils::Coordinate updated_future_coordinates = my_movement.getFutureCoordinate();
uint8_t updated_future_direction = my_movement.getFutureDirection();

std::cout<<"updated_coordinates = "<<updated_coordinates.x<<","<<updated_coordinates.y<<endl;
std::cout<<"updated_future_coordinates = "<<updated_future_coordinates.x<<","<<updated_future_coordinates.y<<endl;
std::cout << "updated_coordinates = " << updated_coordinates.x << "," << updated_coordinates.y << endl;
std::cout << "updated_future_coordinates = " << updated_future_coordinates.x << "," << updated_future_coordinates.y << endl;

bool result_x = false;
if (updated_coordinates.x == updated_future_coordinates.x) {
Expand Down

0 comments on commit 4114403

Please sign in to comment.