From fbf9817dcb29b799120b9721c577e027719d3945 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 2 Oct 2017 07:15:00 +0200 Subject: [PATCH] Rename test classes --- tests/unit/config/test_configcommands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/config/test_configcommands.py b/tests/unit/config/test_configcommands.py index a3862e027..ea8c1d153 100644 --- a/tests/unit/config/test_configcommands.py +++ b/tests/unit/config/test_configcommands.py @@ -32,7 +32,7 @@ def commands(config_stub, keyconf): return configcommands.ConfigCommands(config_stub, keyconf) -class TestSetConfigCommand: +class TestSet: """Tests for :set.""" @@ -218,7 +218,7 @@ class TestSetConfigCommand: assert config_stub.get(opt) == ['foo'] -class TestBindConfigCommand: +class TestBind: """Tests for :bind and :unbind."""