summaryrefslogtreecommitdiffstats
path: root/api/general_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/general_test.go')
-rw-r--r--api/general_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/api/general_test.go b/api/general_test.go
index cec1032eb..3de39ca83 100644
--- a/api/general_test.go
+++ b/api/general_test.go
@@ -11,6 +11,7 @@ import (
func TestGetClientProperties(t *testing.T) {
th := Setup().InitBasic()
+ defer th.TearDown()
if props, err := th.BasicClient.GetClientProperties(); err != nil {
t.Fatal(err)
@@ -23,6 +24,7 @@ func TestGetClientProperties(t *testing.T) {
func TestLogClient(t *testing.T) {
th := Setup().InitBasic()
+ defer th.TearDown()
if ret, _ := th.BasicClient.LogClient("this is a test"); !ret {
t.Fatal("failed to log")
@@ -49,6 +51,7 @@ func TestLogClient(t *testing.T) {
func TestGetPing(t *testing.T) {
th := Setup().InitBasic()
+ defer th.TearDown()
if m, err := th.BasicClient.GetPing(); err != nil {
t.Fatal(err)