EIP712 tests - Renamed -test.json files into -data.json

This commit is contained in:
Alexandre Paillier
2022-08-16 16:19:06 +02:00
parent fd93495096
commit 089de9e28f
13 changed files with 1 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ bip32 = [
def input_files() -> List[str]:
files = []
for file in os.scandir("./eip712/input_files"):
if fnmatch.fnmatch(file, "*-test.json"):
if fnmatch.fnmatch(file, "*-data.json"):
files.append(file.path)
return sorted(files)