Skip to content

Commit

Permalink
AM-65 Fix UT
Browse files Browse the repository at this point in the history
  • Loading branch information
ben authored and MaksymT17 committed Apr 3, 2024
1 parent 724a402 commit 92572d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions analyze/algorithm/ObjectRectangle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace am::analyze::algorithm
ObjectRectangle::ObjectRectangle(const size_t row, const size_t col)
: ObjectBase(row, col)
{
addPixel(row,col);
}

void ObjectRectangle::addPixel(const size_t row, const size_t col)
Expand Down
2 changes: 1 addition & 1 deletion unit_tests/ObjectDetectorTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct ObjectDetectorWrapper : public ::testing::Test
void SetUp() override
{
loggerPtr = std::make_shared<am::common::Logger>("od_dummy_log.log");
extractor = std::make_unique<am::extraction::MultipleExtractor>(loggerPtr, true);
extractor = std::make_unique<am::extraction::MultipleExtractor>(loggerPtr);
}

void TearDown() override
Expand Down

0 comments on commit 92572d3

Please sign in to comment.