From 604c32098a48116499af1970695ddd900c498200 Mon Sep 17 00:00:00 2001 From: Ilya Sher <34807039+ilyash-b@users.noreply.github.com> Date: Thu, 11 Jul 2024 06:25:55 +0400 Subject: [PATCH] [tests] Un-hardcode /bin/echo Source: https://github.com/ngs-lang/ngs/pull/669 --- lib/stdlib.ngs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stdlib.ngs b/lib/stdlib.ngs index 56668f29..f27ca50f 100644 --- a/lib/stdlib.ngs +++ b/lib/stdlib.ngs @@ -6848,7 +6848,7 @@ F '$()'(cp:CommandsPipeline) { TEST $(true).Bool() TEST $(false).Bool() == false -TEST "$(/bin/echo -n abc)" == 'abc' +TEST "$(echo -n abc)" == 'abc' TEST $(cd:"/" pwd).lines()[0] == '/' TEST t=TmpFile(); $(echo -n abc >$t); t.read() == "abc"