From 51edd7a26118ebe7b6d94bd331d09f64d8675a55 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 15 Dec 2017 16:49:49 +0200 Subject: Refactor: drop debug statements --- yarns/900-implements.yarn | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'yarns/900-implements.yarn') diff --git a/yarns/900-implements.yarn b/yarns/900-implements.yarn index 069b37b..410191c 100644 --- a/yarns/900-implements.yarn +++ b/yarns/900-implements.yarn @@ -54,8 +54,6 @@ along with this program. If not, see . user = get_next_match() path = get_next_match() body_text = get_next_match() - print('path', path) - print('body', body_text) token = get_token(user) url = vars['url'] http(vars, post, url + path, body_text=body_text, token=token) @@ -64,8 +62,6 @@ along with this program. If not, see . user = get_next_match() path = get_next_match() body_text = get_next_match() - print('path', path) - print('body', body_text) token = get_token(user) url = vars['url'] http(vars, post, url + path, body_text=body_text, token='invalid') @@ -74,9 +70,6 @@ along with this program. If not, see . user = get_next_match() path = get_next_match() body_text = get_next_match() - print('user', user) - print('path', path) - print('body', body_text) token = get_token(user) url = vars['url'] http(vars, put, url + path, body_text=body_text, token=token) @@ -94,9 +87,6 @@ along with this program. If not, see . user = get_next_match() path = get_next_match() body_text = '{}' - print('user', user) - print('path', path) - print('body', body_text) token = get_token(user) url = vars['url'] http(vars, put, url + path, body_text=body_text, token='invalid') @@ -117,7 +107,6 @@ along with this program. If not, see . IMPLEMENTS THEN body matches (.+) expected_text = get_next_match() expected = json.loads(expected_text) - print('actual body', repr(vars['body'])) actual = json.loads(vars['body']) assertEqual(expected, actual) -- cgit v1.2.1