Skip to content

Commit 0c9d884

Browse files
committed
Fix import paths.
1 parent ef9075b commit 0c9d884

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

cancel_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package workflow_test
22

33
import (
44
"github.com/stretchr/testify/assert"
5+
"github.com/upstash/workflow-go"
56
"testing"
6-
workflow "workflow-go"
77
)
88

99
func TestCancel(t *testing.T) {

examples/cancel/main.go

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

33
import (
44
"fmt"
5-
"workflow-go"
5+
"github.com/upstash/workflow-go"
66
)
77

88
func main() {

examples/logs/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package main
22

33
import (
44
"fmt"
5+
"github.com/upstash/workflow-go"
56
"time"
6-
workflow "workflow-go"
77
)
88

99
func main() {

examples/notify/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"encoding/json"
55
"fmt"
6-
workflow "workflow-go"
6+
"github.com/upstash/workflow-go"
77
)
88

99
func main() {

examples/trigger/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"encoding/json"
55
"fmt"
6-
workflow "workflow-go"
6+
"github.com/upstash/workflow-go"
77
)
88

99
func main() {

logs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package workflow_test
22

33
import (
44
"github.com/stretchr/testify/assert"
5+
"github.com/upstash/workflow-go"
56
"testing"
6-
workflow "workflow-go"
77
)
88

99
func TestLogs(t *testing.T) {

notify_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package workflow_test
33
import (
44
"github.com/google/uuid"
55
"github.com/stretchr/testify/assert"
6+
"github.com/upstash/workflow-go"
67
"testing"
7-
workflow "workflow-go"
88
)
99

1010
func TestNotify_WithoutWaiter(t *testing.T) {

trigger_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package workflow_test
33
import (
44
"github.com/google/uuid"
55
"github.com/stretchr/testify/assert"
6+
"github.com/upstash/workflow-go"
67
"net/http"
78
"testing"
89
"time"
9-
workflow "workflow-go"
1010
)
1111

1212
func TestTrigger(t *testing.T) {

util_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package workflow_test
33
import (
44
"encoding/json"
55
"github.com/stretchr/testify/assert"
6+
"github.com/upstash/workflow-go"
67
"os"
78
"strings"
89
"testing"
910
"time"
10-
workflow "workflow-go"
1111
)
1212

1313
var (

waiter_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package workflow_test
33
import (
44
"github.com/google/uuid"
55
"github.com/stretchr/testify/assert"
6+
"github.com/upstash/workflow-go"
67
"testing"
7-
workflow "workflow-go"
88
)
99

1010
func TestWaiters(t *testing.T) {

0 commit comments

Comments
 (0)