From 5fa09b8e23737d63a6b7c51cde75248743067145 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 9 May 2016 09:00:22 -0400 Subject: [PATCH] Strip trailing slash for cleanliness --- runtests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests b/runtests index c295f0c..162e23e 100755 --- a/runtests +++ b/runtests @@ -42,7 +42,7 @@ def _test(): _run('go test -v'.split() + [ '-coverprofile={}'.format(coverprofile), - '{}/{}'.format(PACKAGE_NAME, subpackage) + ('{}/{}'.format(PACKAGE_NAME, subpackage)).rstrip('/') ]) combined = _combine_coverprofiles(coverprofiles)