From 573078fc6b9796601de8817496d278dfeb1f04f0 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 6 Dec 2016 21:33:19 -0500 Subject: [PATCH] Fix unit test directory path target. --- test/runner/lib/classification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner/lib/classification.py b/test/runner/lib/classification.py index a09a443287c..a3cce212928 100644 --- a/test/runner/lib/classification.py +++ b/test/runner/lib/classification.py @@ -281,7 +281,7 @@ class PathMapper(object): } return { - 'units': os.path.dirname(path), + 'units': '%s/' % os.path.dirname(path), } if path.startswith('test/runner/'):