diff options
author | Patrick Spek <p.spek@tyil.nl> | 2020-11-17 09:34:17 +0100 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2020-11-17 09:34:17 +0100 |
commit | 2a2d512462e5b3a5a88713464e0bbee6d5f6bd9a (patch) | |
tree | 80a439b08b3af9116fe023256e719fa51194b137 | |
parent | adf604d205ad56e853075b87d4ca856a7a59d41d (diff) | |
download | config-parser-toml-2a2d512462e5b3a5a88713464e0bbee6d5f6bd9a.tar.gz config-parser-toml-2a2d512462e5b3a5a88713464e0bbee6d5f6bd9a.tar.bz2 |
Update test to pass with latest Config
-rw-r--r-- | t/01-read.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/01-read.t b/t/01-read.t index 5c15087..ab82b8c 100644 --- a/t/01-read.t +++ b/t/01-read.t @@ -10,7 +10,7 @@ plan 4; my $config = Config.new(); -ok $config.read('t/files/config.toml'.IO), "File reading throws no error"; +ok $config.=read('t/files/config.toml'.IO), "File reading throws no error"; subtest "Contents match" => { plan 2; |