commit 7960a45400ea260aed0ef37e7c9110ee1c4a8cb6
parent 1a12e2fc8e5d15ceba80090dc796457f22442fd9
Author: Özgür Kesim <oec@codeblau.de>
Date: Wed, 30 Apr 2025 13:24:51 +0200
[harness] mark test age-restrictions-mixed-merchant as experimental
It appears that wallet-core is handling the second of the following
situations incorrectly:
1. old coin had age commitment, but some of the denominations for the
fresh coins have no support for age restrictions
(not allowed by exchange)
2. old coin didn't have an age commitment, but some of the denominations
for the fresh coins do have support for age restrictions.
(not allowed by exchange)
The test occasionally operates in situation 2, and ends with failure,
where it should actually also succeed.
See issue #0009820
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-harness/src/integrationtests/test-age-restrictions-mixed-merchant.ts b/packages/taler-harness/src/integrationtests/test-age-restrictions-mixed-merchant.ts
@@ -127,4 +127,4 @@ export async function runAgeRestrictionsMixedMerchantTest(t: GlobalTestState) {
}
runAgeRestrictionsMixedMerchantTest.suites = ["wallet"];
-runAgeRestrictionsMixedMerchantTest.experimental = false;
+runAgeRestrictionsMixedMerchantTest.experimental = true;