diff --git a/tests/test_cal.py b/tests/test_cal.py index 8ef261b70901d..4baa9978c68c3 100644 --- a/tests/test_cal.py +++ b/tests/test_cal.py @@ -48,10 +48,10 @@ def get(url,**params): elif url == t3_url: ret = Resp(event_rep) else: - print url - print t1_url - print t2_url - print t3_url + print(url) + print(t1_url) + print(t2_url) + print(t3_url) raise if params['auth'][0] != 'test@unit.com': raise diff --git a/tests/test_contact.py b/tests/test_contact.py index bf9fc5398a6ab..a010101213f44 100644 --- a/tests/test_contact.py +++ b/tests/test_contact.py @@ -25,7 +25,7 @@ def json(self): def delete(url,headers,auth): if url not in urls: - print url + print(url) raise BaseException('Url wrong') if auth[0] != 'test@unit.com': raise BaseException('wrong email')