Skip to content

Commit 28d68b9

Browse files
Balijepalli Vamshi KrishnaBalijepalli Vamshi Krishna
authored andcommitted
del uneccessary stuff
1 parent f4b2c48 commit 28d68b9

File tree

2 files changed

+0
-28
lines changed

2 files changed

+0
-28
lines changed

remediation/workflow/maintainedactions/doubts.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

remediation/workflow/secureworkflow_test.go

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package workflow
22

33
import (
4-
"fmt"
54
"io/ioutil"
65
"log"
76
"os"
@@ -11,27 +10,6 @@ import (
1110
"github.com/jarcoal/httpmock"
1211
)
1312

14-
func compareStrings(a, b string) {
15-
maxLen := len(a)
16-
if len(b) > maxLen {
17-
maxLen = len(b)
18-
}
19-
20-
for i := 0; i < maxLen; i++ {
21-
var ca, cb byte = '-', '-'
22-
if i < len(a) {
23-
ca = a[i]
24-
}
25-
if i < len(b) {
26-
cb = b[i]
27-
}
28-
if ca != cb {
29-
fmt.Printf("Mismatch at byte %d: expected '%c' (0x%x), got '%c' (0x%x)\n",
30-
i, ca, ca, cb, cb)
31-
}
32-
}
33-
}
34-
3513
func TestSecureWorkflow(t *testing.T) {
3614
const inputDirectory = "../../testfiles/secureworkflow/input"
3715
const outputDirectory = "../../testfiles/secureworkflow/output"

0 commit comments

Comments
 (0)