Skip to content

Commit

Permalink
Be more verbose during tests
Browse files Browse the repository at this point in the history
  • Loading branch information
muesli committed Apr 21, 2020
1 parent da37068 commit 513dfd8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions storage/storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"crypto/rand"
"encoding/hex"
"flag"
"fmt"
mrand "math/rand"
"net/url"
"os"
Expand Down Expand Up @@ -190,6 +191,8 @@ func TestMain(m *testing.M) {

func TestStorageNewBackend(t *testing.T) {
for _, tt := range testBackends {
fmt.Println("Testing backend:", tt.description)

_, err := knoxite.BackendFromURL(tt.url)
if err != nil {
t.Errorf("%s: %s", tt.description, err)
Expand Down

0 comments on commit 513dfd8

Please sign in to comment.