Skip to content

Commit 2719599

Browse files
committed
clean
1 parent 759cb23 commit 2719599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paddle/contrib/inference/test_paddle_inference_api_impl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ TEST(paddle_inference_api_impl, image_classification) {
144144
float* data = static_cast<float*>(outputs[0].data.data);
145145
float* lod_data = output1.data<float>();
146146
for (size_t j = 0; j < len / sizeof(float); ++j) {
147-
EXPECT_NEAR (lod_data[j], data[j], 1e-6);
147+
EXPECT_NEAR(lod_data[j], data[j], 1e-6);
148148
}
149149
free(data);
150150
}

0 commit comments

Comments
 (0)