aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-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"