From 6b6c4ebb1d72434465ebd3e7a39df91c019eb87b Mon Sep 17 00:00:00 2001 From: enlineawork Date: Wed, 9 Sep 2026 20:15:24 -0300 Subject: [PATCH] test(android): align presentation cut with 0.15.1 vc23 --- api-v3/test/unit/f5-android-test-cut.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api-v3/test/unit/f5-android-test-cut.test.ts b/api-v3/test/unit/f5-android-test-cut.test.ts index b6a2d65..c3568f7 100644 --- a/api-v3/test/unit/f5-android-test-cut.test.ts +++ b/api-v3/test/unit/f5-android-test-cut.test.ts @@ -10,8 +10,8 @@ function mountedRepoFile(path: string): string { test('F6.1 Android test cut targets production API and has a distinct installable debug version', () => { const gradle = mountedRepoFile('android-app/app/build.gradle.kts'); - assert.match(gradle, /versionCode = 22/); - assert.match(gradle, /versionName = "0\.15\.0"/); + assert.match(gradle, /versionCode = 23/); + assert.match(gradle, /versionName = "0\.15\.1"/); assert.match(gradle, /https:\/\/dhv2\.korexlabs\.com\/api\/v3\//); assert.match(gradle, /applicationIdSuffix = "\.debug"/); }); @@ -25,4 +25,4 @@ test('F5/F6.1 field inventory exposes Other families as reviewable choices to An assert.match(service, /F5:SYSTEM:OTHER:%/); assert.match(service, /AS "isOther"/); assert.match(service, /isOtherFamily: family\.isOther/); -}); \ No newline at end of file +});