diff options
Diffstat (limited to 'commands/bug/bug_test.go')
-rw-r--r-- | commands/bug/bug_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/bug/bug_test.go b/commands/bug/bug_test.go index aef0346d..cb6a4373 100644 --- a/commands/bug/bug_test.go +++ b/commands/bug/bug_test.go @@ -8,6 +8,7 @@ import ( "github.com/stretchr/testify/require" "github.com/MichaelMure/git-bug/commands/bug/testenv" + "github.com/MichaelMure/git-bug/commands/cmdjson" ) func Test_repairQuery(t *testing.T) { @@ -95,7 +96,7 @@ $` require.NoError(t, runBug(env, opts, []string{})) - var bugs []JSONBugExcerpt + var bugs []cmdjson.BugExcerpt require.NoError(t, json.Unmarshal(env.Out.Bytes(), &bugs)) require.Len(t, bugs, 1) |