diff options
author | Eric Engestrom <eric@engestrom.ch> | 2018-11-08 17:20:03 +0000 |
---|---|---|
committer | Eric Engestrom <eric@engestrom.ch> | 2018-11-08 18:18:44 +0000 |
commit | 5b3566f78490026b38ff03d602655ce3afb5ecb1 (patch) | |
tree | bf64147b5cbd3f794b84686299734fe379dfd653 /framework | |
parent | aeff7c934e16631ee9669ad3a73a46b512682418 (diff) |
framework: fix python2
The non-ascii char broke the python2 CI:
https://travis-ci.org/mesa3d/piglit/jobs/452170869
Fixes: 221d924689e3bb2796ce "framework: Add a vulkan tests profile"
Cc: Neil Roberts <nroberts@igalia.com>
Cc: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Signed-off-by: Eric Engestrom <eric@engestrom.ch>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/test/piglit_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/test/piglit_test.py b/framework/test/piglit_test.py index c80e355d1..83398bf6a 100644 --- a/framework/test/piglit_test.py +++ b/framework/test/piglit_test.py @@ -248,7 +248,7 @@ class VkRunnerTest(PiglitBaseTest): @PiglitBaseTest.command.getter def command(self): - # This is overriden because we don’t want PiglitBaseTest to + # This is overriden because we don't want PiglitBaseTest to # prepend TEST_BIN_DIR so that it will look for vkrunner in # the search path. return self._command |