From 0eb397f0dbde0a6134b66fe8c90b47e6356b1ac1 Mon Sep 17 00:00:00 2001 From: jarbasal Date: Wed, 26 Sep 2018 20:22:23 +0100 Subject: [PATCH] unittest --- test/unittests/skills/test_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unittests/skills/test_core.py b/test/unittests/skills/test_core.py index 16a5c4f0f9..bf61fabb58 100644 --- a/test/unittests/skills/test_core.py +++ b/test/unittests/skills/test_core.py @@ -405,7 +405,7 @@ class MycroftSkillTest(unittest.TestCase): s = SimpleSkill1() s.bind(self.emitter) s.remove_context('Donatello') - expected = [{'context': 'Donatello'}] + expected = [{'context': 'ADonatello'}] check_remove_context(expected) @mock.patch.dict(Configuration._Configuration__config, BASE_CONF)