From 0d72580bbc3644fe1218391139e81730963c3c44 Mon Sep 17 00:00:00 2001 From: Awilum Date: Fri, 27 May 2022 08:59:46 +0300 Subject: [PATCH] feat(tests): upd tests for `filesystem` shortcode --- .../core/Parsers/Shortcodes/FilesystemShortcodeTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/flextype/core/Parsers/Shortcodes/FilesystemShortcodeTest.php b/tests/src/flextype/core/Parsers/Shortcodes/FilesystemShortcodeTest.php index 28027d51..39eb9d5d 100644 --- a/tests/src/flextype/core/Parsers/Shortcodes/FilesystemShortcodeTest.php +++ b/tests/src/flextype/core/Parsers/Shortcodes/FilesystemShortcodeTest.php @@ -16,5 +16,5 @@ afterEach(function (): void { test('[filesystem] shortcode', function () { $filesystem = filesystem(); $filesystem->file($this->tempDir . '/foo.txt')->put('Foo'); - $this->assertEquals("Foo", parsers()->shortcodes()->parse("(filesystem get:'". $this->tempDir . "/foo.txt')")); + $this->assertEquals("Foo", parsers()->shortcodes()->parse("(filesystem get file:'". $this->tempDir . "/foo.txt')")); });