aboutsummaryrefslogtreecommitdiffstats
path: root/validation/src/test/java/org/onap/cli/moco/OnapCommandHttpMocoServer.java
diff options
context:
space:
mode:
Diffstat (limited to 'validation/src/test/java/org/onap/cli/moco/OnapCommandHttpMocoServer.java')
-rw-r--r--validation/src/test/java/org/onap/cli/moco/OnapCommandHttpMocoServer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/validation/src/test/java/org/onap/cli/moco/OnapCommandHttpMocoServer.java b/validation/src/test/java/org/onap/cli/moco/OnapCommandHttpMocoServer.java
index f92e0c00..7f84704c 100644
--- a/validation/src/test/java/org/onap/cli/moco/OnapCommandHttpMocoServer.java
+++ b/validation/src/test/java/org/onap/cli/moco/OnapCommandHttpMocoServer.java
@@ -105,13 +105,13 @@ public class OnapCommandHttpMocoServer {
try {
values = (Map<String, ?>) new Yaml().load(file.getInputStream());
} catch (Exception e) {
- throw new OnapCommandInvalidSample("Invalid sample", e);
+ throw new OnapCommandInvalidSample(file.getFilename(), e);
}
OnapCommandSample sample = new OnapCommandSample();
if (!this.getValue(values, SAMPLE_VERSION).equals(SAMPLE_VERSION_1_0)) {
- throw new OnapCommandInvalidSample("Invalid sample version " + this.getValue(values, SAMPLE_VERSION));
+ throw new OnapCommandInvalidSample(file.getFilename(), "Invalid sample version " + this.getValue(values, SAMPLE_VERSION));
}
sample.setCommandName(this.getValue(values, SAMPLE_COMMAND_NAME));