Explorar o código

Fixed some test comment wording.

Chris Rhodes %!s(int64=9) %!d(string=hai) anos
pai
achega
2b4b19cfd8
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      discord_test.go

+ 2 - 1
discord_test.go

@@ -256,7 +256,7 @@ func TestAddHandler(t *testing.T) {
 		t.Fatalf("testHandler was not called twice.")
 	}
 
-	// interfaceHandler will be called twice for each event.
+	// interfaceHandler will be called twice, once for each event.
 	if interfaceHandlerCalled != 2 {
 		t.Fatalf("interfaceHandler was not called twice.")
 	}
@@ -281,6 +281,7 @@ func TestRemoveHandler(t *testing.T) {
 
 	d.handle(&MessageCreate{})
 
+	// testHandler will be called once, as it was removed in between calls.
 	if testHandlerCalled != 1 {
 		t.Fatalf("testHandler was not called once.")
 	}