We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5319868 commit 53ecc2bCopy full SHA for 53ecc2b
tests/integration/actions_delete_run_test.go
@@ -4,20 +4,22 @@
4
package integration
5
6
import (
7
- runnerv1 "code.gitea.io/actions-proto-go/runner/v1"
+ "fmt"
8
+ "net/http"
9
+ "net/url"
10
+ "testing"
11
+ "time"
12
+
13
actions_model "code.gitea.io/gitea/models/actions"
14
auth_model "code.gitea.io/gitea/models/auth"
15
"code.gitea.io/gitea/models/unittest"
16
user_model "code.gitea.io/gitea/models/user"
17
"code.gitea.io/gitea/modules/json"
18
"code.gitea.io/gitea/routers/web/repo/actions"
- "fmt"
19
20
+ runnerv1 "code.gitea.io/actions-proto-go/runner/v1"
21
"github.com/stretchr/testify/assert"
22
"google.golang.org/protobuf/types/known/timestamppb"
- "net/http"
- "net/url"
- "testing"
- "time"
23
)
24
25
func TestActionsDeleteRun(t *testing.T) {
0 commit comments