From 305083bf3fde9102c0128731a5a9694c584ef85c Mon Sep 17 00:00:00 2001 From: Misaka Date: Thu, 21 May 2026 19:50:40 +0800 Subject: [PATCH] test: update registration linking mode parameter --- test/services/registration_linking_test.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/services/registration_linking_test.dart b/test/services/registration_linking_test.dart index 51ef84c..9f934f8 100644 --- a/test/services/registration_linking_test.dart +++ b/test/services/registration_linking_test.dart @@ -16,7 +16,7 @@ void main() { expect( registrationSubmitLabel( isTransitTarget: false, - isLocked: false, + isMultiCode: false, zongpaiCount: 1, ), '确 认 上 架', @@ -24,7 +24,7 @@ void main() { expect( registrationSubmitLabel( isTransitTarget: false, - isLocked: true, + isMultiCode: true, zongpaiCount: 3, ), '批量上架(3 条)', @@ -32,7 +32,7 @@ void main() { expect( registrationSubmitLabel( isTransitTarget: true, - isLocked: false, + isMultiCode: false, zongpaiCount: 1, ), '转运并装箱', @@ -40,7 +40,7 @@ void main() { expect( registrationSubmitLabel( isTransitTarget: true, - isLocked: true, + isMultiCode: true, zongpaiCount: 3, ), '批量转运并凑箱(3 条)',