diff --git a/tools/smp-tester.c b/tools/smp-tester.c
index 27a75e8..a53627e 100644
--- a/tools/smp-tester.c
+++ b/tools/smp-tester.c
{ smp_nval_req_4, sizeof(smp_nval_req_4), NULL, 0 },
};
-static const uint8_t disconn_param[] = { 0x2a, 0x00, 0x05 };
-
-static const struct smp_data smp_server_nval_req_4_test = {
- .req = srv_nval_req_3,
- .req_count = G_N_ELEMENTS(srv_nval_req_3),
- .expect_hci_command = BT_HCI_CMD_DISCONNECT,
- .expect_hci_param = disconn_param,
- .expect_hci_len = sizeof(disconn_param),
-};
-
static const uint8_t smp_basic_req_1[] = { 0x01, /* Pairing Request */
0x03, /* NoInputNoOutput */
0x00, /* OOB Flag */
test_smp("SMP Server - Invalid Request 3",
&smp_server_nval_req_3_test,
setup_powered_server, test_server);
- test_smp("SMP Server - Invalid Request 4",
- &smp_server_nval_req_4_test,
- setup_powered_server, test_server);
test_smp("SMP Client - Basic Request 1",
&smp_client_basic_req_1_test,