removed superfluous constraints duplication
diff --git a/tests/tests-asn1c-compiler/42-real-life-OK.asn1.-PR b/tests/tests-asn1c-compiler/42-real-life-OK.asn1.-PR
index e17981f..5b965c1 100644
--- a/tests/tests-asn1c-compiler/42-real-life-OK.asn1.-PR
+++ b/tests/tests-asn1c-compiler/42-real-life-OK.asn1.-PR
@@ -56,7 +56,7 @@
 	
 	if((size >= 1)) {
 		/* Perform validation of the inner elements */
-		return td->op->check_constraints(td, sptr, ctfailcb, app_key);
+		return td->check_constraints(td, sptr, ctfailcb, app_key);
 	} else {
 		ASN__CTFAIL(app_key, td, sptr,
 			"%s: constraint failed (%s:%d)",
@@ -405,7 +405,7 @@
 	
 	if((size >= 1)) {
 		/* Perform validation of the inner elements */
-		return td->op->check_constraints(td, sptr, ctfailcb, app_key);
+		return td->check_constraints(td, sptr, ctfailcb, app_key);
 	} else {
 		ASN__CTFAIL(app_key, td, sptr,
 			"%s: constraint failed (%s:%d)",