Skip to content

Commit d903948

Browse files
committed
chore: random stuff
1 parent 1eda893 commit d903948

13 files changed

+15
-15
lines changed

go-runner/src/builder/patcher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ import (
115115

116116
const ALREADY_PATCHED_IMPORT: &str = r#"package main
117117
118-
import testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
118+
import testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
119119
120120
func BenchmarkExample(b *testing.B) {
121121
// benchmark code

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__already_patched_import.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ expression: result
44
---
55
package main
66

7-
import testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
7+
import testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
88

99
func BenchmarkExample(b *testing.B) {
1010
// benchmark code

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__import_at_end_of_block.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ package main
77
import (
88
"fmt"
99
"strings"
10-
testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
10+
testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
1111
)

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__import_with_comments.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ package main
66

77
import (
88
"fmt"
9-
testing "github.com/AvalancheHQ/codspeed-go/compat/testing" // for unit tests
9+
testing "github.com/CodSpeedHQ/codspeed-go/compat/testing" // for unit tests
1010
"strings"
1111
)

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__import_with_extra_whitespace.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package main
77
import (
88
"fmt"
99

10-
testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
10+
testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
1111

1212
"strings"
1313
)

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__import_with_testing_string.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source: src/builder/patcher.rs
33
expression: result
44
---
55
package main
6-
import testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
6+
import testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
77
import "fmt"
88

99
func TestExample(t *testing.T) {

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__mixed_import_styles.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ expression: result
44
---
55
package main
66

7-
import testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
7+
import testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
88

99
import (
1010
"fmt"

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__multiline_import_replacement.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package main
66

77
import (
88
"fmt"
9-
testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
9+
testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
1010
"strings"
1111
)
1212

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__multiline_import_with_tabs.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ package main
66

77
import (
88
"fmt"
9-
testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
9+
testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
1010
"strings"
1111
)

go-runner/src/builder/snapshots/go_runner__builder__patcher__tests__multiline_import_with_testing_string.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ expression: result
55
package main
66
import (
77
"fmt"
8-
testing "github.com/AvalancheHQ/codspeed-go/compat/testing"
8+
testing "github.com/CodSpeedHQ/codspeed-go/compat/testing"
99
)
1010

1111
func TestExample(t *testing.T) {

0 commit comments

Comments
 (0)