From 2c87a3044520b5fad0995a7c6225eb6aec8d07e3 Mon Sep 17 00:00:00 2001 From: Joon Klaps Date: Mon, 9 Dec 2024 16:12:34 +0100 Subject: [PATCH] fix missing ',' in docs code --- docs/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage.md b/docs/usage.md index 1ae2b04..892eddb 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -111,7 +111,7 @@ For the list of stable file names with unstable contents, we can use `stable_nam def stable_name = getAllFilesFromDir(params.outdir, true, ['pipeline_info/execution_*.{html,txt}'], null, ['*', '**/*']) def stable_content = getAllFilesFromDir(params.outdir, false, ['pipeline_info/execution_*.{html,txt}'], 'tests/getAllFilesFromDir/.nftignore', ['*', '**/*']) assert snapshot( - stable_content + stable_content, stable_name*.name, ).match() ```