From a9a42e0a990737dbd70e246803764f819c691405 Mon Sep 17 00:00:00 2001 From: Oliver Caldwell Date: Sun, 31 Jan 2016 22:36:58 +0000 Subject: [PATCH] Removed invalid placeholder test --- tests/unit/config/test_configtypes.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unit/config/test_configtypes.py b/tests/unit/config/test_configtypes.py index 34f4329fc..7bb505578 100644 --- a/tests/unit/config/test_configtypes.py +++ b/tests/unit/config/test_configtypes.py @@ -1586,7 +1586,6 @@ class TestShellCommand: @pytest.mark.parametrize('kwargs, val', [ ({}, ''), - ({'placeholder': '{}'}, 'foo{} bar'), ({'placeholder': '{}'}, 'foo bar'), ({}, 'foo"'), # not splittable with shlex ])