Skip to content

Commit 77f7ce3

Browse files
Merge pull request #2 from oracle-samples/update-module-oracle-samples
Update module to match 'oracle-samples'
2 parents ce1074b + ca21714 commit 77f7ce3

40 files changed

+43
-43
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dsn := `user="scott" password="tiger"
2424
package main
2525

2626
import (
27-
"github.com/oracle/gorm-oracle/oracle"
27+
"github.com/oracle-samples/gorm-oracle/oracle"
2828
"gorm.io/gorm"
2929
)
3030

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/oracle/gorm-oracle
1+
module github.com/oracle-samples/gorm-oracle
22

33
go 1.24.4
44

tests/associations_belongs_to_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
"strings"
4343
"testing"
4444

45-
. "github.com/oracle/gorm-oracle/tests/utils"
45+
. "github.com/oracle-samples/gorm-oracle/tests/utils"
4646

4747
"gorm.io/gorm"
4848
"gorm.io/gorm/utils/tests"

tests/associations_has_many_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ package tests
4141
import (
4242
"testing"
4343

44-
. "github.com/oracle/gorm-oracle/tests/utils"
44+
. "github.com/oracle-samples/gorm-oracle/tests/utils"
4545

4646
"gorm.io/gorm"
4747
)

tests/associations_has_one_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ package tests
4141
import (
4242
"testing"
4343

44-
. "github.com/oracle/gorm-oracle/tests/utils"
44+
. "github.com/oracle-samples/gorm-oracle/tests/utils"
4545
)
4646

4747
func TestHasOneAssociation(t *testing.T) {

tests/associations_many2many_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import (
4343
"sync"
4444
"testing"
4545

46-
. "github.com/oracle/gorm-oracle/tests/utils"
46+
. "github.com/oracle-samples/gorm-oracle/tests/utils"
4747

4848
"gorm.io/gorm"
4949
"gorm.io/gorm/clause"

tests/associations_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
"strings"
4343
"testing"
4444

45-
. "github.com/oracle/gorm-oracle/tests/utils"
45+
. "github.com/oracle-samples/gorm-oracle/tests/utils"
4646

4747
"gorm.io/gorm"
4848
"gorm.io/gorm/clause"

tests/benchmark_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
"fmt"
4343
"testing"
4444

45-
. "github.com/oracle/gorm-oracle/tests/utils"
45+
. "github.com/oracle-samples/gorm-oracle/tests/utils"
4646
)
4747

4848
func BenchmarkCreate(b *testing.B) {

tests/count_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import (
4444
"strings"
4545
"testing"
4646

47-
. "github.com/oracle/gorm-oracle/tests/utils"
47+
. "github.com/oracle-samples/gorm-oracle/tests/utils"
4848

4949
"gorm.io/gorm"
5050
"gorm.io/gorm/utils/tests"

tests/create_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import (
4545
"strings"
4646
"testing"
4747

48-
. "github.com/oracle/gorm-oracle/tests/utils"
48+
. "github.com/oracle-samples/gorm-oracle/tests/utils"
4949

5050
"time"
5151

0 commit comments

Comments
 (0)