Skip to content
Snippets Groups Projects
Commit ce41b30f authored by Simon Schuster's avatar Simon Schuster
Browse files

GenericExperiment: Fix definition of "detected-marker"

Due to a bug (most likely a copy and paste issue), the detected-marker
group was defined to point to the "FAIL_marker"-set, which would be
redundant. This commit will correctly map it to the "DETECTED_marker"
group.

Change-Id: I7de688357006ced1adf2423e213ae6633629cb81
parent 6991499e
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ public:
end_marker_groups["ok-marker"] = &OK_marker;
end_marker_groups["fail-marker"] = &FAIL_marker;
end_marker_groups["detected-marker"] = &FAIL_marker;
end_marker_groups["detected-marker"] = &DETECTED_marker;
end_marker_groups["group1-marker"] = &GROUP1_marker;
end_marker_groups["group2-marker"] = &GROUP2_marker;
end_marker_groups["group3-marker"] = &GROUP3_marker;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment