@@ -25,10 +25,7 @@ void main(List<String> args) {
2525 ),
2626 ingressSettings: Ingress (IngressSetting .allowAll),
2727 invoker: Invoker .public (),
28- labels: {
29- 'environment' : 'test' ,
30- 'team' : 'backend' ,
31- },
28+ labels: {'environment' : 'test' , 'team' : 'backend' },
3229 omit: Omit (false ),
3330 // Runtime-only options (NOT in manifest)
3431 preserveExternalChanges: PreserveExternalChanges (true ),
@@ -49,9 +46,7 @@ void main(List<String> args) {
4946 maxInstances: Instances (100 ),
5047 concurrency: Concurrency (80 ),
5148 invoker: Invoker .private (),
52- labels: {
53- 'type' : 'callable' ,
54- },
49+ labels: {'type' : 'callable' },
5550 // Runtime-only options (NOT in manifest)
5651 enforceAppCheck: EnforceAppCheck (true ),
5752 consumeAppCheckToken: ConsumeAppCheckToken (true ),
@@ -66,9 +61,7 @@ void main(List<String> args) {
6661 // Test 3: GCF Gen1 CPU option
6762 firebase.https.onRequest (
6863 name: 'httpsGen1' ,
69- options: const HttpsOptions (
70- cpu: Cpu .gcfGen1 (),
71- ),
64+ options: const HttpsOptions (cpu: Cpu .gcfGen1 ()),
7265 (request) async => Response .ok ('GCF Gen1 CPU' ),
7366 );
7467
0 commit comments