print out simple_tc success at the end of test

Signed-off-by: Yonghong Song <yhs@plumgrid.com>
diff --git a/examples/simple_tc.py b/examples/simple_tc.py
index 4f0fe0f..f0258e5 100755
--- a/examples/simple_tc.py
+++ b/examples/simple_tc.py
@@ -5,7 +5,6 @@
 from bpf import BPF
 from pyroute2 import IPRoute
 
-print("Simple program to test pyroute2 IPRoute tc interface")
 ipr = IPRoute()
 
 text = """
@@ -28,3 +27,4 @@
            name=fn.name, parent="1:", action="ok", classid=1)
 finally:
     if "idx" in locals(): ipr.link_remove(idx)
+print("BPF tc functionality - SCHED_CLS: OK")