[Piglit] [PATCH] tests/all.py: fix typo in recent list conversion

Dylan Baker baker.dylan.c at gmail.com
Fri Jan 9 15:11:31 PST 2015


In one case the comma was put on the inside of the quote, resulting in
two strings being combined into a single string rather than being two
elements in a list.

Signed-off-by: Dylan Baker <baker.dylan.c at gmail.com>
---
 tests/all.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/all.py b/tests/all.py
index 87ff8e9..696ba45 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -1513,7 +1513,7 @@ for stage in ['vs', 'gs', 'fs']:
         spec[grouptools.join(
             'glsl-{}'.format(version), 'execution', 'texelFetchOffset',
             '{}-{}'.format(stage, sampler))] = PiglitGLTest(
-                ['texelFetch', 'offset,' '140', stage, sampler],
+                ['texelFetch', 'offset', '140', stage, sampler],
                 run_concurrent=True)
 
 spec['glsl-1.50'] = {}
-- 
2.2.1



More information about the Piglit mailing list