We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a56046 + 34da991 commit 644bb1eCopy full SHA for 644bb1e
libcontainer/seccomp/patchbpf/enosys_linux_test.go
@@ -299,8 +299,8 @@ func TestEnosysStub_SingleArch(t *testing.T) {
299
}
300
301
func TestEnosysStub_MultiArch(t *testing.T) {
302
- for end := 0; end < len(testArches); end++ {
303
- for start := 0; start < end; start++ {
+ for end := range len(testArches) {
+ for start := range end {
304
var arches []string
305
for _, arch := range testArches[start:end] {
306
// "native" indicates a blank architecture field for seccomp, to test
0 commit comments