Skip to content

Commit b393819

Browse files
authored
utils/wasm-run.py: clean up naming for WASIRunner (swiftlang#83028)
1 parent 67e297d commit b393819

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/wasm-run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def collect_wasm_env(local_env=os.environ, prefix='WASM_RUN_CHILD_'):
1111
for key, value in local_env.items() if key.startswith(prefix))
1212

1313

14-
class WasmtimeRunner(object):
14+
class WASIRunner(object):
1515
def __init__(self):
1616
pass
1717

@@ -46,7 +46,7 @@ def main():
4646
help='the command to run', metavar='command...')
4747

4848
args = parser.parse_args()
49-
runner = WasmtimeRunner()
49+
runner = WASIRunner()
5050
runner.run(args)
5151

5252

0 commit comments

Comments
 (0)