fix import paths back to emirpasic

pull/47/head
Benjamin Scher Purcell 9 years ago
parent dfbd06908b
commit 6da2e38be5

@ -14,8 +14,8 @@ package treemap
import ( import (
"fmt" "fmt"
"github.com/emirpasic/gods/maps" "github.com/emirpasic/gods/maps"
rbt "github.com/spewspews/gods/trees/redblacktree" "github.com/emirpasic/gods/trees"
"github.com/spewspews/gods/trees" rbt "github.com/emirpasic/gods/trees/redblacktree"
"github.com/emirpasic/gods/utils" "github.com/emirpasic/gods/utils"
"strings" "strings"
) )

@ -8,7 +8,7 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/spewspews/gods/trees/avltree" "github.com/emirpasic/gods/trees/avltree"
) )
func TestMapPut(t *testing.T) { func TestMapPut(t *testing.T) {

@ -6,7 +6,7 @@ package treeset
import ( import (
"github.com/emirpasic/gods/containers" "github.com/emirpasic/gods/containers"
rbt "github.com/spewspews/gods/trees/redblacktree" rbt "github.com/emirpasic/gods/trees/redblacktree"
) )
func assertEnumerableImplementation() { func assertEnumerableImplementation() {

@ -6,7 +6,7 @@ package treeset
import ( import (
"github.com/emirpasic/gods/containers" "github.com/emirpasic/gods/containers"
"github.com/spewspews/gods/trees" "github.com/emirpasic/gods/trees"
) )
func assertIteratorImplementation() { func assertIteratorImplementation() {

@ -14,9 +14,9 @@ import (
"strings" "strings"
"github.com/emirpasic/gods/sets" "github.com/emirpasic/gods/sets"
"github.com/emirpasic/gods/trees"
rbt "github.com/emirpasic/gods/trees/redblacktree"
"github.com/emirpasic/gods/utils" "github.com/emirpasic/gods/utils"
"github.com/spewspews/gods/trees"
rbt "github.com/spewspews/gods/trees/redblacktree"
) )
func assertSetImplementation() { func assertSetImplementation() {

@ -8,7 +8,7 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/spewspews/gods/trees/avltree" "github.com/emirpasic/gods/trees/avltree"
) )
func TestSetAdd(t *testing.T) { func TestSetAdd(t *testing.T) {

@ -12,8 +12,8 @@ import (
"io/ioutil" "io/ioutil"
"log" "log"
"github.com/emirpasic/gods/trees"
"github.com/emirpasic/gods/utils" "github.com/emirpasic/gods/utils"
"github.com/spewspews/gods/trees"
) )
func assertTreeImplementation() { func assertTreeImplementation() {

@ -14,8 +14,8 @@ package redblacktree
import ( import (
"fmt" "fmt"
"github.com/emirpasic/gods/trees"
"github.com/emirpasic/gods/utils" "github.com/emirpasic/gods/utils"
"github.com/spewspews/gods/trees"
) )
func assertTreeImplementation() { func assertTreeImplementation() {

Loading…
Cancel
Save