File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ def git_ab_test_host_command(
160
160
161
161
162
162
def set_did_not_grow_comparator (
163
- set_generator : Callable [[CommandReturn ], set ]
163
+ set_generator : Callable [[CommandReturn ], set ],
164
164
) -> Callable [[CommandReturn , CommandReturn ], bool ]:
165
165
"""Factory function for comparators to use with git_ab_test_command that converts the command output to sets
166
166
(using the given callable) and then checks that the "B" set is a subset of the "A" set
Original file line number Diff line number Diff line change 3
3
4
4
5
5
"""Provides:
6
- - Mechanism to collect and export Firecracker metrics every 60seconds to CloudWatch
7
- - Utility functions to validate Firecracker metrics format and to validate Firecracker device metrics.
6
+ - Mechanism to collect and export Firecracker metrics every 60seconds to CloudWatch
7
+ - Utility functions to validate Firecracker metrics format and to validate Firecracker device metrics.
8
8
"""
9
9
10
10
import datetime
Original file line number Diff line number Diff line change 1
1
# Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
"""A test that fails if it can definitely prove a seccomp rule redundant
4
- (although it passing does not guarantee the converse, that all rules are definitely needed)."""
4
+ (although it passing does not guarantee the converse, that all rules are definitely needed).
5
+ """
5
6
import platform
6
7
from pathlib import Path
7
8
You can’t perform that action at this time.
0 commit comments