diff --git a/tests/lib/appframework/utility/SimpleContainerTest.php b/tests/lib/appframework/utility/SimpleContainerTest.php
index 09857808b9f8b82eebb3ef71714125178e0860ca..7ff579a85fca172e63025ed8218d54482c484e53 100644
--- a/tests/lib/appframework/utility/SimpleContainerTest.php
+++ b/tests/lib/appframework/utility/SimpleContainerTest.php
@@ -136,8 +136,7 @@ class SimpleContainerTest extends \Test\TestCase {
     }
 
 
-    public function tesOverrideService() {
-        $this->container->registerParameter('test', 'abc');
+    public function testOverrideService() {
         $this->container->registerService(
         'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) {
             return $c->query('Test\AppFramework\Utility\ClassSimpleConstructor');
@@ -147,10 +146,9 @@ class SimpleContainerTest extends \Test\TestCase {
             return $c->query('Test\AppFramework\Utility\ClassEmptyConstructor');
         });
         $object = $this->container->query(
-            'Test\AppFramework\Utility\ClassInterfaceConstructor'
+            'Test\AppFramework\Utility\IInterfaceConstructor'
         );
         $this->assertTrue($object instanceof ClassEmptyConstructor);
-        $this->assertEquals('abc', $object->test);
     }
 
     public function testRegisterAliasParamter() {