Skip to content

Commit

Permalink
[tests] Un-hardcode /bin/echo
Browse files Browse the repository at this point in the history
Source: #669
  • Loading branch information
ilyash-b committed Jul 11, 2024
1 parent 17398e3 commit 604c320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stdlib.ngs
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 604c320

Please sign in to comment.