Don't close what doesn't exist.

This commit is contained in:
Bruce Marriner 2016-01-11 14:59:24 -06:00
parent 80cfd644b4
commit 591162a2ff

View file

@ -98,7 +98,7 @@ func TestInvalidEmailPass(t *testing.T) {
func TestInvalidPass(t *testing.T) { func TestInvalidPass(t *testing.T) {
if envEmail == "" { if envEmail == "" {
t.Skip("Skipping New(username,InvalidPass), DG_USERNAME not set") t.Skip("Skipping New(username,InvalidPass), DG_EMAIL not set")
return return
} }
_, err := New(envEmail, "invalidpassword") _, err := New(envEmail, "invalidpassword")
@ -113,7 +113,7 @@ func TestInvalidPass(t *testing.T) {
func TestNewUserPass(t *testing.T) { func TestNewUserPass(t *testing.T) {
if envEmail == "" || envPassword == "" { if envEmail == "" || envPassword == "" {
t.Skip("Skipping New(username,password), DG_USERNAME or DG_PASSWORD not set") t.Skip("Skipping New(username,password), DG_EMAIL or DG_PASSWORD not set")
return return
} }
@ -142,7 +142,9 @@ func TestNewUserPass(t *testing.T) {
} }
func TestClose(t *testing.T) { func TestClose(t *testing.T) {
if dg != nil {
dg.Close() dg.Close()
}
} }
// TestNewToken tests the New() function with a Token. This should return // TestNewToken tests the New() function with a Token. This should return