mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
Remove some unnecessary type conversions (#841)
* Remove some unnecessary type conversions Signed-off-by: Chris Cummer <chriscummer@me.com> * Tidy'd go.mod Signed-off-by: Chris Cummer <chriscummer@me.com>
This commit is contained in:
@@ -70,10 +70,8 @@ func Test_ExecuteCommand(t *testing.T) {
|
||||
}
|
||||
|
||||
func Test_FindMatch(t *testing.T) {
|
||||
var result [][]string
|
||||
|
||||
expected := [][]string([][]string{[]string{"SSID: 7E5B5C", "7E5B5C"}})
|
||||
result = FindMatch(`s*SSID: (.+)s*`, "SSID: 7E5B5C")
|
||||
result := FindMatch(`s*SSID: (.+)s*`, "SSID: 7E5B5C")
|
||||
|
||||
assert.Equal(t, expected, result)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user