diff options
author | Michael Muré <batolettre@gmail.com> | 2023-01-18 17:08:02 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2023-01-18 19:09:32 +0100 |
commit | 3e41812ddb0c1879f9c37a7f952db073b115c85b (patch) | |
tree | 9c4bbe3fc62b0fa429a3e0392329d06d0ff47f45 /commands/bug/bug_test.go | |
parent | 248486708911105e7067cb1061607b712c39a60e (diff) | |
download | git-bug-3e41812ddb0c1879f9c37a7f952db073b115c85b.tar.gz git-bug-3e41812ddb0c1879f9c37a7f952db073b115c85b.zip |
commands: different pattern to detect changed flags
Diffstat (limited to 'commands/bug/bug_test.go')
-rw-r--r-- | commands/bug/bug_test.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/commands/bug/bug_test.go b/commands/bug/bug_test.go index e6fadd6f..6b0aa4e0 100644 --- a/commands/bug/bug_test.go +++ b/commands/bug/bug_test.go @@ -72,9 +72,10 @@ $` env, _ := testenv.NewTestEnvAndBug(t) opts := bugOptions{ - sortDirection: "asc", - sortBy: "creation", - outputFormat: testcase.format, + sortDirection: "asc", + sortBy: "creation", + outputFormat: testcase.format, + outputFormatChanged: true, // disable auto-detect } require.NoError(t, runBug(env, opts, []string{})) |