@@ -29,7 +29,7 @@ def test_app_invalid():
2929 # error 7000 No route for that URI
3030 assert int (e ) == 7000
3131 assert str (e ) == 'No route for that URI'
32- print ('error : %d=%s' % (int (e ), str (e )), file = sys .stderr )
32+ print ('Error expected : %d=%s' % (int (e ), str (e )), file = sys .stderr )
3333
3434def test_app_invalid_with_underscore ():
3535 """add API commands"""
@@ -42,7 +42,7 @@ def test_app_invalid_with_underscore():
4242 # error 7000 No route for that URI
4343 assert int (e ) == 7000
4444 assert str (e ) == 'No route for that URI'
45- print ('error : %d=%s' % (int (e ), str (e )), file = sys .stderr )
45+ print ('Error expected : %d=%s' % (int (e ), str (e )), file = sys .stderr )
4646
4747def test_app_invalid_with_dash ():
4848 """add API commands"""
@@ -55,7 +55,7 @@ def test_app_invalid_with_dash():
5555 # error 7000 No route for that URI
5656 assert int (e ) == 7000
5757 assert str (e ) == 'No route for that URI'
58- print ('error : %d=%s' % (int (e ), str (e )), file = sys .stderr )
58+ print ('Error expected : %d=%s' % (int (e ), str (e )), file = sys .stderr )
5959
6060if __name__ == '__main__' :
6161 test_cloudflare (debug = True )
0 commit comments