aboutsummaryrefslogtreecommitdiff
path: root/t/04-setting.t
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-07-04 13:46:25 +0200
committerPatrick Spek <p.spek@tyil.nl>2020-07-12 08:59:13 +0200
commitbd3bc6769547e89dc5d3e255aa4babc2cc5ffe48 (patch)
tree974bf72d443dbf0d1bffea29793becee806b43bc /t/04-setting.t
parent2d0de9cc3f93f661044f20b55c6a03860e8a0de8 (diff)
Overhaul Config to 3.0.0
Diffstat (limited to 't/04-setting.t')
-rw-r--r--t/04-setting.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/04-setting.t b/t/04-setting.t
index 77039ca..96ab7c3 100644
--- a/t/04-setting.t
+++ b/t/04-setting.t
@@ -8,7 +8,7 @@ plan 4;
use Config;
-my $config = Config.new();
+my $config = Config.new;
is $config.set("a", "test").get("a"), "test", "Setting simple key";
is $config.set("b.c", "test").get("b.c"), "test", "Setting nested key";