fixeria has uploaded this change for review.

View Change

BSC_Tests: f_assignment_codec(): log the actual value on mismatch

Change-Id: I437c1e796b00bfae41620f05ef8f15c8db8ca3d9
---
M bsc/BSC_Tests.ttcn
1 file changed, 2 insertions(+), 2 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/49/29349/1
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index cd9514e..4d7717e 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -4354,8 +4354,8 @@
log("found RSL MR CONFIG IE: ", mr_conf);

if (not match(mr_conf, g_pars.expect_mr_conf_ie)) {
- setverdict(fail, "RSL MR CONFIG IE does not match expectation. Expected: ",
- g_pars.expect_mr_conf_ie);
+ setverdict(fail, "RSL MR CONFIG IE does not match expectation. ",
+ "Expected: ", g_pars.expect_mr_conf_ie, ", got: ", mr_conf);
}
} else {
if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == true) {

To view, visit change 29349. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I437c1e796b00bfae41620f05ef8f15c8db8ca3d9
Gerrit-Change-Number: 29349
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-MessageType: newchange