We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a4c55c commit 2ea4cadCopy full SHA for 2ea4cad
1 file changed
pkg/devspace/sync/util_test.go
@@ -54,9 +54,7 @@ func (arr testCaseList) Less(i, j int) bool {
54
}
55
56
func (arr testCaseList) Swap(i, j int) {
57
- x := arr[i]
58
- arr[i] = arr[j]
59
- arr[j] = x
+ arr[i], arr[j] = arr[j], arr[i]
60
61
62
const fileContents = "TestContents"
0 commit comments