Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ewfuentes committed Dec 12, 2024
1 parent c1381a7 commit 7939f22
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion common/video/image_compare.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace robot::common::video {

bool images_equal(const cv::Mat& img1, const cv::Mat& img2) {

if (img1.size() != img2.size() || img1.type() != img2.type()) {
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ bool compare_depth_frame(const std::unique_ptr<VIO::DepthFrame>& kimera_depth,

TEST(KimeraSpectacularDataProviderTest, happy_case) {
// Setup
const std::filesystem::path log_path(
"external/spectacular_log_snippet/20241212_150605");
const std::filesystem::path log_path("external/spectacular_log_snippet/20241212_150605");
SpectacularLog log(log_path);

// get initial IMU information
Expand Down
3 changes: 1 addition & 2 deletions experimental/overhead_matching/spectacular_log_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ std::ostream &operator<<(std::ostream &out, const time::RobotTimestamp &t) {

TEST(SpectacularLogTest, DISABLED_happy_case) {
// Setup
const std::filesystem::path log_path(
"external/spectacular_log_snippet/20241212_150605");
const std::filesystem::path log_path("external/spectacular_log_snippet/20241212_150605");
SpectacularLog log(log_path);
// Action

Expand Down

0 comments on commit 7939f22

Please sign in to comment.