Cleanup: tests: notification: fix typo kprobe/uprobe
[lttng-tools.git] / tests / regression / tools / notification / notification.cpp
index 15f98bf9a1b4fa50265e412e34adbdeff6496ddc..aa351d96a0c78245566f479e1ca639c6ec957434 100644 (file)
@@ -48,6 +48,7 @@ enum field_type {
        FIELD_TYPE_ARRAY_FIELD,
 };
 
+namespace {
 struct capture_base_field_tuple {
        const char *field_name;
        enum field_type field_type;
@@ -58,6 +59,7 @@ struct capture_base_field_tuple {
        validate_cb validate_ust;
        validate_cb validate_kernel;
 };
+} /* namespace */
 
 static
 const char *field_value_type_to_str(enum lttng_event_field_value_type type)
@@ -1996,7 +1998,7 @@ static void test_uprobe_event_rule_notification(
        ok(notification_channel, "Notification channel object creation");
 
        event_rule = lttng_event_rule_kernel_uprobe_create(probe_location);
-       ok(event_rule, "kprobe event rule object creation");
+       ok(event_rule, "uprobe event rule object creation");
 
        event_rule_status = lttng_event_rule_kernel_uprobe_set_event_name(
                        event_rule, trigger_name);
This page took 0.024102 seconds and 4 git commands to generate.