Skip to content

Commit 12436c3

Browse files
committed
Rename and update image file path in functional test.
The image file was moved from `tests/data` to `data` for better organization. Updated the file path in the test code to reflect this change, ensuring the tests reference the correct location.
1 parent c5881e8 commit 12436c3

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

tasks/example/tests/functional/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class NesterovARunFuncTests : public BaseFuncTests {
3333
int channels = -1;
3434
// Read image
3535
{
36-
std::string abs_path = ppc::util::GetAbsolutePath("example/tests/data/pic_all.jpg");
36+
std::string abs_path = ppc::util::GetAbsolutePath("example/data/pic_all.jpg");
3737
auto *data = stbi_load(abs_path.c_str(), &width, &height, &channels, 0);
3838
if (data == nullptr) {
3939
throw std::runtime_error("Failed to load image: " + std::string(stbi_failure_reason()));

0 commit comments

Comments
 (0)