Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Schwarzemann authored Oct 9, 2024
1 parent 60ae217 commit 0819119
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/testing/TestSDKCamera.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ int TestSDKCamera(int argc, char* argv[])

// Test getAzimuth
f3d::angle_deg_t addAzimuth = cam.getAzimuth();
if(!compareDouble(addAzimuth,0.0))
if (!compareDouble(addAzimuth,0.0))
{
std::cerr << "getAzimuth is not behaving as expected:" << std::endl;
std::cerr << std::setprecision(12) << "azimuth: " << addAzimuth << " != 0.0" << std::endl;
Expand All @@ -190,7 +190,7 @@ int TestSDKCamera(int argc, char* argv[])

// Test getYaw
f3d::angle_deg_t addYaw = cam.getYaw();
if(!compareDouble(addYaw,90.0))
if (!compareDouble(addYaw,90.0))
{
std::cerr << "getYaw is not behaving as expected:" << std::endl;
std::cerr << std::setprecision(12) << "yaw: " << addYaw << " != 0.0" << std::endl;
Expand Down

0 comments on commit 0819119

Please sign in to comment.