From 07d27b67b157d0efbe19a914a34ed1dcf325b757 Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Mon, 13 Feb 2017 17:23:36 +0000 Subject: [PATCH] Fix number of commands test --- src/github.com/matrix-org/go-neb/services/google/google_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/go-neb/services/google/google_test.go b/src/github.com/matrix-org/go-neb/services/google/google_test.go index 6d7422a..c069cc2 100644 --- a/src/github.com/matrix-org/go-neb/services/google/google_test.go +++ b/src/github.com/matrix-org/go-neb/services/google/google_test.go @@ -100,7 +100,7 @@ func TestCommand(t *testing.T) { // Execute the matrix !command cmds := google.Commands(matrixCli) - if len(cmds) != 2 { + if len(cmds) != 3 { t.Fatalf("Unexpected number of commands: %d", len(cmds)) } // cmd := cmds[0]