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": [
{
"ImportPath": "code.google.com/p/go-uuid/uuid",
"Comment": "null-15",
"Rev": "35bc42037350f0078e3c974c6ea690f1926603ab"
"ImportPath": "github.com/pborman/uuid",
"Rev": "ca53cad383cad2479bbba7f7a1a05797ec1386e4"
},
{
"ImportPath": "github.com/badgerodon/peg",

View file

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

View file

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