return false;
 }
 
-static void do_test(const struct network_helper_opts *opts,
-                   const struct network_helper_opts *cli_opts,
-                   const struct bpf_map *sk_stg_map)
+static void do_test(const struct network_helper_opts *opts)
 {
        int lfd = -1, fd = -1;
 
-       if (!start_test(NULL, opts, cli_opts, &lfd, &fd))
+       if (!start_test(NULL, opts, opts, &lfd, &fd))
                goto done;
 
        ASSERT_OK(send_recv_data(lfd, fd, total_bytes), "send_recv_data");
                return;
        }
 
-       do_test(&opts, &opts, NULL);
+       do_test(&opts);
 
        ASSERT_EQ(cubic_skel->bss->bpf_cubic_acked_called, 1, "pkts_acked called");
 
        link = bpf_map__attach_struct_ops(skel->maps.ca_update_1);
        ASSERT_OK_PTR(link, "attach_struct_ops");
 
-       do_test(&opts, &opts, NULL);
+       do_test(&opts);
        saved_ca1_cnt = skel->bss->ca1_cnt;
        ASSERT_GT(saved_ca1_cnt, 0, "ca1_ca1_cnt");
 
        err = bpf_link__update_map(link, skel->maps.ca_update_2);
        ASSERT_OK(err, "update_map");
 
-       do_test(&opts, &opts, NULL);
+       do_test(&opts);
        ASSERT_EQ(skel->bss->ca1_cnt, saved_ca1_cnt, "ca2_ca1_cnt");
        ASSERT_GT(skel->bss->ca2_cnt, 0, "ca2_ca2_cnt");
 
        link = bpf_map__attach_struct_ops(skel->maps.ca_update_1);
        ASSERT_OK_PTR(link, "attach_struct_ops");
 
-       do_test(&opts, &opts, NULL);
+       do_test(&opts);
        saved_ca1_cnt = skel->bss->ca1_cnt;
        ASSERT_GT(saved_ca1_cnt, 0, "ca1_ca1_cnt");
 
        err = bpf_link__update_map(link, skel->maps.ca_wrong);
        ASSERT_ERR(err, "update_map");
 
-       do_test(&opts, &opts, NULL);
+       do_test(&opts);
        ASSERT_GT(skel->bss->ca1_cnt, saved_ca1_cnt, "ca2_ca1_cnt");
 
        bpf_link__destroy(link);
        link = bpf_map__attach_struct_ops(skel->maps.ca_update_1);
        ASSERT_OK_PTR(link, "attach_struct_ops");
 
-       do_test(&opts, &opts, NULL);
+       do_test(&opts);
        ASSERT_GT(skel->bss->ca1_cnt, 0, "ca1_ca1_cnt");
 
        err = bpf_link__update_map(link, skel->maps.ca_no_link);
                return;
        }
 
-       do_test(&opts, &opts, NULL);
+       do_test(&opts);
 
        bpf_link__destroy(link);
        bpf_cc_cubic__destroy(cc_cubic_skel);