Skip to content

Commit 971b525

Browse files
committed
do some updates in code to trigger the CI
1 parent aff9295 commit 971b525

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/paddle/v2/fluid/tests/test_cpp_reader.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,7 @@
6464

6565
[res1, res2] = exe.run(prog, fetch_list=[out1, out2])
6666

67-
test_pass = res1.shape == (10, 2) and res2.shape == (10, 1)
68-
69-
if not test_pass:
67+
if not (res1.shape == (10, 2) and res2.shape == (10, 1)):
7068
exit(1)
7169

7270
exit(0)

0 commit comments

Comments
 (0)