diff options
author | Maximilian Bosch <maximilian@mbosch.me> | 2024-05-04 16:48:07 +0200 |
---|---|---|
committer | Maximilian Bosch <maximilian@mbosch.me> | 2024-05-04 16:48:07 +0200 |
commit | d3b41f3a7dbe4d6d9eb57ffc0dc1b3219b8d4a59 (patch) | |
tree | 1699f82be677d4e3f2255baf482b8d7f5719a6a9 /tests/functional/fetchMercurial.sh | |
parent | 79d0ae667066b758fd4202cd18294a0f40ddc8f0 (diff) |
tests: actually run mercurial tests
The binary to check for is called hg not hq.
Change-Id: I812a30f9347d5bf0573cdacc3fc887960887ee92
Diffstat (limited to 'tests/functional/fetchMercurial.sh')
-rw-r--r-- | tests/functional/fetchMercurial.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/fetchMercurial.sh b/tests/functional/fetchMercurial.sh index e6f8525c6..e133df1f8 100644 --- a/tests/functional/fetchMercurial.sh +++ b/tests/functional/fetchMercurial.sh @@ -1,6 +1,6 @@ source common.sh -[[ $(type -p hq) ]] || skipTest "Mercurial not installed" +[[ $(type -p hg) ]] || skipTest "Mercurial not installed" clearStore |