From aff9295b550414691736e31ff4cf68350e0fc6e8 Mon Sep 17 00:00:00 2001 From: fengjiayi Date: Sat, 10 Feb 2018 22:45:30 +0800 Subject: [PATCH 1/2] update AUTHORS.mdwq --- AUTHORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AUTHORS.md b/AUTHORS.md index 4db4a4a8e7..389a7ad8bc 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -2,7 +2,7 @@ |---|---| | backyes | Yan-Fei Wang | | beckett1124 | Bin Qi | -| Canpio | Jia-Yi Feng | +| JiayiFeng | Jia-Yi Feng | | chengxiaohua1105 | Xiao-Hua Cheng | | cxwangyi, yiwangbaidu, wangkuiyi | Yi Wang | | cxysteven | Xing-Yi Cheng | From 971b525148688c0a7d7669b1c047d4206f2787bb Mon Sep 17 00:00:00 2001 From: fengjiayi Date: Sat, 10 Feb 2018 22:52:38 +0800 Subject: [PATCH 2/2] do some updates in code to trigger the CI --- python/paddle/v2/fluid/tests/test_cpp_reader.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/paddle/v2/fluid/tests/test_cpp_reader.py b/python/paddle/v2/fluid/tests/test_cpp_reader.py index 66d6c28ef7..8d4f454611 100644 --- a/python/paddle/v2/fluid/tests/test_cpp_reader.py +++ b/python/paddle/v2/fluid/tests/test_cpp_reader.py @@ -64,9 +64,7 @@ exe = fluid.Executor(place) [res1, res2] = exe.run(prog, fetch_list=[out1, out2]) -test_pass = res1.shape == (10, 2) and res2.shape == (10, 1) - -if not test_pass: +if not (res1.shape == (10, 2) and res2.shape == (10, 1)): exit(1) exit(0)