rados_test.go: Fix import header to allow `gofmt` to work.

This commit is contained in:
Livio Soares 2016-03-25 00:57:23 -04:00
parent 74d77ff49b
commit d5b49dd4ea
1 changed files with 14 additions and 13 deletions

View File

@ -1,19 +1,20 @@
package rados_test
import "testing"
import (
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net"
"os"
"os/exec"
"sort"
"testing"
"time"
//import "bytes"
import "github.com/ceph/go-ceph/rados"
import "github.com/stretchr/testify/assert"
import "os"
import "os/exec"
import "io"
import "io/ioutil"
import "time"
import "net"
import "fmt"
import "sort"
import "encoding/json"
"github.com/ceph/go-ceph/rados"
"github.com/stretchr/testify/assert"
)
func GetUUID() string {
out, _ := exec.Command("uuidgen").Output()