aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2017-04-26 09:48:28 +0200
committerPatrick Spek <p.spek@tyil.nl>2017-04-26 09:48:28 +0200
commit7313624f98295bb80416009cf21012cec10bdc15 (patch)
tree0ebf21647bd4bcea5b71a493302bea264a4f87e5
parent2fa145223277129586ae290edbd5362d6904507d (diff)
I fucked up the test
-rw-r--r--t/reading.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/reading.t b/t/reading.t
index 1c3a120..e43252a 100644
--- a/t/reading.t
+++ b/t/reading.t
@@ -15,7 +15,7 @@ throws-like { $config.read("t/test-stub") }, Config::Exception::UnknownTypeExcep
throws-like { $config.read("t/test-stub", "Config::Parser:NoSuchParserForTest") }, Config::Exception::MissingParserException, "Using non-existing parser";
my $hash = {
- "a" =>
+ "a" => "a",
"b" => {
"c" => "test"
}
@@ -32,7 +32,7 @@ $config.read({
});
is-deeply $config.get(), {
- "a" =>
+ "a" => "a",
"b" => {
"c" => "test",
"d" => "another"