summaryrefslogtreecommitdiff
path: root/tests/admin_scripts
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-07-30 11:59:04 -0400
committerTim Graham <timograham@gmail.com>2013-07-30 11:59:04 -0400
commit8550df869bef11d176aa926aa056df9f3566a304 (patch)
tree9e852682a89032c83df9a07aff38de8fa34bc2bc /tests/admin_scripts
parentdffda2ba4e55d4567b3a829d410dae794636ebdd (diff)
Removed part of a test that doesn't work on Jenkins; refs #19877.
Diffstat (limited to 'tests/admin_scripts')
-rw-r--r--tests/admin_scripts/tests.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py
index e9863ebd94..810c90c53e 100644
--- a/tests/admin_scripts/tests.py
+++ b/tests/admin_scripts/tests.py
@@ -1286,10 +1286,6 @@ class CommandTypes(AdminScriptTestCase):
call_command('color_command', no_color=True, stdout=out)
self.assertEqual(out.getvalue(), 'BEGIN\n')
- out = StringIO()
- call_command('color_command', stdout=out)
- self.assertEqual(out.getvalue(), '\x1b[33mBEGIN\x1b[0m\n')
-
def test_base_command(self):
"User BaseCommands can execute when a label is provided"
args = ['base_command', 'testlabel']