base1: don't hardcode seq(1) location in tests

In Debian sid coreutils, on a non-usrmerge system, seq lives in
/usr/bin.

Closes #14739
This commit is contained in:
Allison Karlitskaya 2020-10-13 19:02:45 +02:00 committed by GitHub
parent 900858a10c
commit 7f5528976a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ QUnit.test("stream large output", function (assert) {
assert.expect(4);
var lastblock = null;
cockpit.spawn(["/bin/seq", "10000000"])
cockpit.spawn(["seq", "10000000"])
.stream(function(resp) {
if (lastblock === null)
assert.equal(resp.slice(0, 4), "1\n2\n", "stream data starts with first numbers");