@@ -1217,6 +1217,8 @@ mod tests {
12171217 aws_account_id : "0" . into ( ) ,
12181218 aws_region_id : "us-east-1" . into ( ) ,
12191219 ec2_instance_id : "i-fake" . into ( ) ,
1220+ #[ cfg( feature = "__unstable-fargate-cpu-count" ) ]
1221+ ec2_instance_type : "t3.micro" . into ( ) ,
12201222 } )
12211223 . build ( ) ;
12221224 ( agent, rx)
@@ -1228,6 +1230,8 @@ mod tests {
12281230 aws_account_id : "0" . into ( ) ,
12291231 aws_region_id : "us-east-1" . into ( ) ,
12301232 ec2_instance_id : "i-fake" . into ( ) ,
1233+ #[ cfg( feature = "__unstable-fargate-cpu-count" ) ]
1234+ ec2_instance_type : "t3.micro" . into ( ) ,
12311235 } ;
12321236 let ( agent, mut rx) = make_mock_profiler ( ) ;
12331237 agent
@@ -1251,6 +1255,8 @@ mod tests {
12511255 aws_account_id : "0" . into ( ) ,
12521256 aws_region_id : "us-east-1" . into ( ) ,
12531257 ec2_instance_id : "i-fake" . into ( ) ,
1258+ #[ cfg( feature = "__unstable-fargate-cpu-count" ) ]
1259+ ec2_instance_type : "t3.micro" . into ( ) ,
12541260 } ;
12551261 let ( agent, mut rx) = make_mock_profiler ( ) ;
12561262 let rt = tokio:: runtime:: Builder :: new_current_thread ( )
@@ -1317,6 +1323,8 @@ mod tests {
13171323 aws_account_id : "0" . into ( ) ,
13181324 aws_region_id : "us-east-1" . into ( ) ,
13191325 ec2_instance_id : "i-fake" . into ( ) ,
1326+ #[ cfg( feature = "__unstable-fargate-cpu-count" ) ]
1327+ ec2_instance_type : "t3.micro" . into ( ) ,
13201328 } ;
13211329 let ( agent, mut rx) = make_mock_profiler ( ) ;
13221330 let profiler_ref = agent
0 commit comments