summaryrefslogtreecommitdiff
path: root/core/tests/Var_Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/tests/Var_Test.php')
-rw-r--r--core/tests/Var_Test.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/core/tests/Var_Test.php b/core/tests/Var_Test.php
index 272a39fa..e186a7c2 100644
--- a/core/tests/Var_Test.php
+++ b/core/tests/Var_Test.php
@@ -24,14 +24,5 @@ class Var_Test extends Unit_Test_Case {
module::set_var("core", "Parameter", "updated value");
$this->assert_equal("updated value", module::get_var("core", "Parameter"));
-
- module::set_var("core", "Parameter2", "new parameter");
- $core = module::get("core");
-
- $params = $core->vars->select_list("name", "value");
- $this->assert_false(empty($params["Parameter"]));
- $this->assert_equal("updated value", $params["Parameter"]);
- $this->assert_false(empty($params["Parameter2"]));
- $this->assert_equal("new parameter", $params["Parameter2"]);
}
} \ No newline at end of file