Skip to content

Commit

Permalink
import
Browse files Browse the repository at this point in the history
  • Loading branch information
ale7714 committed Oct 9, 2024
1 parent 27f20f9 commit fb53e62
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions assert/assert_failed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package assert
import (
"testing"

"github.com/smarty/assertions/internal/unit"
"github.com/smarty/assertions/should"
"github.com/ale7714/smarty-assertions/internal/unit"
"github.com/ale7714/smarty-assertions/should"
)

func TestFailedResultFixture(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions assert/assert_passed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package assert
import (
"testing"

"github.com/smarty/assertions/internal/unit"
"github.com/smarty/assertions/should"
"github.com/ale7714/smarty-assertions/internal/unit"
"github.com/ale7714/smarty-assertions/should"
)

func TestPassedResultFixture(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions assert/example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"fmt"

"github.com/smarty/assertions/assert"
"github.com/smarty/assertions/should"
"github.com/ale7714/smarty-assertions/assert"
"github.com/ale7714/smarty-assertions/should"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion collections.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"reflect"

"github.com/smarty/assertions/internal/oglematchers"
"github.com/ale7714/smarty-assertions/internal/oglematchers"
)

// ShouldContain receives exactly two parameters. The first is a slice and the
Expand Down
2 changes: 1 addition & 1 deletion equal_method_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package assertions
import (
"testing"

"github.com/smarty/assertions/internal/unit"
"github.com/ale7714/smarty-assertions/internal/unit"
)

func TestEqualityFixture(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion equality.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"reflect"
"strings"

"github.com/smarty/assertions/internal/go-render/render"
"github.com/ale7714/smarty-assertions/internal/go-render/render"
)

// ShouldEqual receives exactly two parameters and does an equality check
Expand Down
2 changes: 1 addition & 1 deletion equality_diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package assertions
import (
"fmt"

"github.com/smarty/assertions/internal/go-diff/diffmatchpatch"
"github.com/ale7714/smarty-assertions/internal/go-diff/diffmatchpatch"
)

func composePrettyDiff(expected, actual string) string {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/ale7714/smarty-assertions
module github.com/smartystreets/assertions

go 1.22
2 changes: 1 addition & 1 deletion quantity.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package assertions
import (
"fmt"

"github.com/smarty/assertions/internal/oglematchers"
"github.com/ale7714/smarty-assertions/internal/oglematchers"
)

// ShouldBeGreaterThan receives exactly two parameters and ensures that the first is greater than the second.
Expand Down
2 changes: 1 addition & 1 deletion serializer.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"strings"

"github.com/smarty/assertions/internal/go-render/render"
"github.com/ale7714/smarty-assertions/internal/go-render/render"
)

type Serializer interface {
Expand Down
2 changes: 1 addition & 1 deletion should/should.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// functions in the assertions package.
package should

import "github.com/smarty/assertions"
import "github.com/ale7714/smarty-assertions"

var (
AlmostEqual = assertions.ShouldAlmostEqual
Expand Down
2 changes: 1 addition & 1 deletion utilities_for_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"github.com/smarty/assertions/internal/unit"
"github.com/ale7714/smarty-assertions/internal/unit"
)

/**************************************************************************/
Expand Down

0 comments on commit fb53e62

Please sign in to comment.