From 88ddf2479e1960622cedecf2782e237ca9964de6 Mon Sep 17 00:00:00 2001 From: Jaco de Groot Date: Thu, 9 Jan 2025 13:51:48 +0100 Subject: [PATCH] Add checkpoint nr and name to alternative stub message --- src/main/java/nl/nn/testtool/run/ReportRunner.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/nl/nn/testtool/run/ReportRunner.java b/src/main/java/nl/nn/testtool/run/ReportRunner.java index f12f5f3c..c7b1f498 100644 --- a/src/main/java/nl/nn/testtool/run/ReportRunner.java +++ b/src/main/java/nl/nn/testtool/run/ReportRunner.java @@ -1,5 +1,5 @@ /* - Copyright 2020, 2022-2024 WeAreFrank!, 2018-2019 Nationale-Nederlanden + Copyright 2020, 2022-2025 WeAreFrank!, 2018-2019 Nationale-Nederlanden Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -152,8 +152,8 @@ public static String getRunResultInfo(Report reportOrig, Report reportResult) { if (checkpoint.getStubNotFound() != null) { stubsNotFoundResult++; if (alternativeStubInfo.length() == 0) { - alternativeStubInfo = " (Alternative stub used for: " - + checkpoint.getStubNotFound(); + alternativeStubInfo = " (Alternative stub used for checkpoint nr " + checkpoint.getIndex() + + " ("+ checkpoint.getName() + "): " + checkpoint.getStubNotFound(); } else if (alternativeStubInfo.length() > 200) { alternativeStubSkipped++; } else {