Trying to test for weird corner case
This commit is contained in:
parent
a771efc4cb
commit
8aa88feae3
|
@ -87,7 +87,9 @@ def main():
|
|||
)
|
||||
|
||||
num_modified = 0
|
||||
for path in test_files(args.repo):
|
||||
relevant_files = list(test_files(args.repo))
|
||||
logger.info('Found %d test files', len(relevant_files))
|
||||
for path in relevant_files:
|
||||
was_modified = standardize_in_file(
|
||||
path,
|
||||
inline=args.i,
|
||||
|
|
|
@ -124,6 +124,18 @@ import org.junit.jupiter.api.DisplayName;
|
|||
public void zkBinderContextImplPropagatesLotFieldsDirectlyFromUnderlyingZkBinderContext()
|
||||
"""
|
||||
|
||||
INPUT_6 = """
|
||||
/** Fail when uploading the wrong share */
|
||||
@ContractTest(previous = "registerSharing")
|
||||
void TODO2() {
|
||||
"""
|
||||
|
||||
OUTPUT_6 = """
|
||||
/** Fail when uploading the wrong share */
|
||||
@ContractTest(previous = "registerSharing")
|
||||
void failWhenUploadingTheWrongShare() {
|
||||
"""
|
||||
|
||||
JAVADOC_TO_DISPLAYNAME = [
|
||||
(INPUT_1, OUTPUT_1),
|
||||
(INPUT_2, OUTPUT_2),
|
||||
|
@ -133,6 +145,7 @@ JAVADOC_TO_DISPLAYNAME = [
|
|||
(INPUT_5B, OUTPUT_5),
|
||||
(INPUT_5C, OUTPUT_5),
|
||||
(INPUT_5D, OUTPUT_5),
|
||||
(INPUT_6, OUTPUT_6),
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user