Skip to content

Commit

Permalink
fix: wrong name
Browse files Browse the repository at this point in the history
  • Loading branch information
infastin committed Apr 29, 2024
1 parent b84117a commit eb536e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _generated/replace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func compareStructS(t *testing.T, a, b *CompatibleStructS) {
}
}

func TestRecieve_ABCD(t *testing.T) {
func TestReplace_ABCD(t *testing.T) {
d := CompatibleStructD{
Time: Time(time.Now()),
Duration: Duration(time.Duration(1234)),
Expand Down Expand Up @@ -174,7 +174,7 @@ func TestRecieve_ABCD(t *testing.T) {
})
}

func TestRecieve_I(t *testing.T) {
func TestReplace_I(t *testing.T) {
var int0 int = -10
var uint0 uint = 12

Expand All @@ -198,7 +198,7 @@ func TestRecieve_I(t *testing.T) {
compareStructI(t, &i, &ui)
}

func TestRecieve_S(t *testing.T) {
func TestReplace_S(t *testing.T) {
s := CompatibleStructS{
Slice: []Int{10, 12, 14, 16},
}
Expand All @@ -218,7 +218,7 @@ func TestRecieve_S(t *testing.T) {
compareStructS(t, &s, &us)
}

func TestRecieve_Dummy(t *testing.T) {
func TestReplace_Dummy(t *testing.T) {
dummy := Dummy{
StructA: StructA{
StructB: StructB{
Expand Down

0 comments on commit eb536e4

Please sign in to comment.