Use upstream version of ncw/swift

This commit is contained in:
Sylvain Baubeau
2015-02-10 09:17:46 +01:00
parent f097cd20c1
commit 355a98b51f
3 changed files with 5 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ gom 'github.com/julienschmidt/httprouter', :commit => '46807412fe50aaceb73bb5706
gom 'github.com/mattn/go-shellwords', :commit => 'c7ca6f94add751566a61cf2199e1de78d4c3eee4'
gom 'github.com/mitchellh/goamz/s3', :commit => 'e7664b32019f31fd1bdf33f9e85f28722f700405'
gom 'github.com/mkrautz/goar', :commit => '36eb5f3452b1283a211fa35bc00c646fd0db5c4b'
gom 'github.com/lebauce/swift', :commit => '075195d7dd6167c2d4eeb1bd04daef806bdbbc81'
gom 'github.com/ncw/swift', :commit => '1ba06e828dbd125ece563f8ed0aaa5c6037b28e2'
gom 'github.com/smira/commander', :commit => 'f408b00e68d5d6e21b9f18bd310978dafc604e47'
gom 'github.com/smira/flag', :commit => '357ed3e599ffcbd4aeaa828e1d10da2df3ea5107'
gom 'github.com/smira/go-ftp-protocol/protocol', :commit => '066b75c2b70dca7ae10b1b88b47534a3c31ccfaa'

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"

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)