diff options
author | Masanari Iida <[email protected]> | 2019-08-29 09:01:30 +0900 |
---|---|---|
committer | Daniel Borkmann <[email protected]> | 2019-08-31 01:00:28 +0200 |
commit | 1c6d6e021c452ac15ce034e6762f0477f1cf7f19 (patch) | |
tree | 1d26d827c01577f8eafa11422b91a9c3c54ee33e | |
parent | 0741be358d5adc266244f909e4434fe17fe1a109 (diff) |
selftests/bpf: Fix a typo in test_offload.py
This patch fix a spelling typo in test_offload.py
Signed-off-by: Masanari Iida <[email protected]>
Acked-by: Jakub Kicinski <[email protected]>
Acked-by: Song Liu <[email protected]>
Signed-off-by: Daniel Borkmann <[email protected]>
-rwxr-xr-x | tools/testing/selftests/bpf/test_offload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/test_offload.py b/tools/testing/selftests/bpf/test_offload.py index 425f9ed27c3b..15a666329a34 100755 --- a/tools/testing/selftests/bpf/test_offload.py +++ b/tools/testing/selftests/bpf/test_offload.py @@ -1353,7 +1353,7 @@ try: bpftool_prog_list_wait(expected=1) ifnameB = bpftool("prog show %s" % (progB))[1]["dev"]["ifname"] - fail(ifnameB != simB1['ifname'], "program not bound to originial device") + fail(ifnameB != simB1['ifname'], "program not bound to original device") simB1.remove() bpftool_prog_list_wait(expected=1) |