Use upstream version of ncw/swift

This commit is contained in:
Sylvain Baubeau
2015-02-10 09:17:46 +01:00
committed by Andrey Smirnov
parent f097cd20c1
commit d6271b6542
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ package swift
import (
"fmt"
"github.com/lebauce/swift"
"github.com/ncw/swift"
"github.com/smira/aptly/aptly"
"github.com/smira/aptly/files"
"time"
+3 -3
View File
@@ -2,7 +2,7 @@ package swift
import (
"github.com/smira/aptly/files"
"github.com/lebauce/swift"
"github.com/ncw/swift/swifttest"
"io/ioutil"
"os"
@@ -20,7 +20,7 @@ const (
)
type PublishedStorageSuite struct {
srv *swift.SwiftServer
srv *swifttest.SwiftServer
storage, prefixedStorage *PublishedStorage
}
@@ -28,7 +28,7 @@ var _ = Suite(&PublishedStorageSuite{})
func (s *PublishedStorageSuite) SetUpTest(c *C) {
var err error
s.srv, err = swift.NewSwiftServer(TEST_ADDRESS)
s.srv, err = swifttest.NewSwiftServer(TEST_ADDRESS)
c.Assert(err, IsNil)
c.Assert(s.srv, NotNil)