Merge pull request #278 from lytics/fix-uuid-import

Use new import path for go-uuid
This commit is contained in:
Barak Michener 2015-07-13 18:07:52 -04:00
commit 4509a01d6c
3 changed files with 6 additions and 6 deletions

5
Godeps/Godeps.json generated
View file

@ -6,9 +6,8 @@
], ],
"Deps": [ "Deps": [
{ {
"ImportPath": "code.google.com/p/go-uuid/uuid", "ImportPath": "github.com/pborman/uuid",
"Comment": "null-15", "Rev": "ca53cad383cad2479bbba7f7a1a05797ec1386e4"
"Rev": "35bc42037350f0078e3c974c6ea690f1926603ab"
}, },
{ {
"ImportPath": "github.com/badgerodon/peg", "ImportPath": "github.com/badgerodon/peg",

View file

@ -20,8 +20,8 @@ import (
"strconv" "strconv"
"sync" "sync"
"code.google.com/p/go-uuid/uuid"
"github.com/barakmich/glog" "github.com/barakmich/glog"
"github.com/pborman/uuid"
) )
type primaryKeyType uint8 type primaryKeyType uint8

View file

@ -15,9 +15,10 @@
package graph_test package graph_test
import ( import (
"code.google.com/p/go-uuid/uuid"
. "github.com/google/cayley/graph"
"testing" "testing"
. "github.com/google/cayley/graph"
"github.com/pborman/uuid"
) )
func TestSequentialKeyCreation(t *testing.T) { func TestSequentialKeyCreation(t *testing.T) {