@@ -52,12 +52,6 @@ def test_unauthorized(self):
52
52
'https://fake1.app.goo.gl/uQWc' ,
53
53
dynamic_links .StatOptions (duration_days = 4000 ))
54
54
assert excinfo .value .code == 'authentication-error'
55
- print (excinfo .value , dir (excinfo .value ))
56
-
57
- print (excinfo .value , dir (excinfo .value ), "\n ARGS: " , excinfo .value .args ,
58
- "\n CODE : " , excinfo .value .code ,
59
- "\n DETAIL" ,
60
- excinfo .value .detail , "\n \n h:" ,dir (excinfo .value .detail ))
61
55
62
56
@pytest .mark .skipif (not dynamic_links_e2e_url ,
63
57
reason = 'End-to-end tests not set up, see CONTRIBTING.md file.' )
@@ -68,9 +62,3 @@ def test_bad_request(self):
68
62
dynamic_links .StatOptions (duration_days = 4000 ))
69
63
assert excinfo .value .code == 'invalid-argument'
70
64
assert 'Request contains an invalid argument' in str (excinfo .value )
71
-
72
- print (excinfo .value , dir (excinfo .value ), "\n ARGS: " , excinfo .value .args ,
73
- "\n CODE : " , excinfo .value .code ,
74
- "\n DETAIL" ,
75
- excinfo .value .detail , "\n \n h:" ,dir (excinfo .value .detail ))
76
-
0 commit comments