aboutsummaryrefslogtreecommitdiff
path: root/tests/dataset/ThresholdDataset.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dataset/ThresholdDataset.h')
-rw-r--r--tests/dataset/ThresholdDataset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dataset/ThresholdDataset.h b/tests/dataset/ThresholdDataset.h
index 956cf3d54d..a2d76e3c48 100644
--- a/tests/dataset/ThresholdDataset.h
+++ b/tests/dataset/ThresholdDataset.h
@@ -58,8 +58,8 @@ public:
std::stringstream ss;
ss << "Threshold";
ss << "_threshold_value" << threshold;
- ss << "_false_value" << false_value;
- ss << "_true_value" << true_value;
+ ss << "_false_value" << std::boolalpha << false_value;
+ ss << "_true_value" << std::boolalpha << true_value;
ss << "_type";
ss << ((type == ThresholdType::BINARY) ? "binary" : "range");
ss << "_upper" << upper;