Skip to content

Commit

Permalink
Revert "Replace seq(1) by jot(1) for a test"
Browse files Browse the repository at this point in the history
because on github runner:

```
exec: "jot": executable file not found in $PATH
```

This reverts commit 1a9f8fb.
  • Loading branch information
dsh2dsh committed Jan 27, 2025
1 parent 7bb4d64 commit 26dc914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/zfs/zfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ func TestSendStream_Close_noRead(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

cmd := zfscmd.CommandContext(ctx, "jot", "-b", "x", "1024")
cmd := zfscmd.CommandContext(ctx, "seq", "1024")
var stderrBuf bytes.Buffer
pipeReader, err := cmd.PipeTo(nil, nil, &stderrBuf)
require.NoError(t, err)
Expand Down

0 comments on commit 26dc914

Please sign in to comment.