diff options
author | Sandeep Hegde <dsandeephegde@gmail.com> | 2017-11-13 21:12:53 -0500 |
---|---|---|
committer | Sandeep Hegde <dsandeephegde@gmail.com> | 2017-11-13 21:12:53 -0500 |
commit | a9493d08874d3a9f8c4f61d9bb83a21dd2a94575 (patch) | |
tree | bfeba8a1438c8f9441c25456182b43c6248c4198 /python/servo/mutation/test.py | |
parent | f817a9c37146ddbb24207af1b54dac0ed08d208a (diff) | |
download | servo-a9493d08874d3a9f8c4f61d9bb83a21dd2a94575.tar.gz servo-a9493d08874d3a9f8c4f61d9bb83a21dd2a94575.zip |
Corrected a typo
Diffstat (limited to 'python/servo/mutation/test.py')
-rw-r--r-- | python/servo/mutation/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/mutation/test.py b/python/servo/mutation/test.py index 7ecc383f682..2248f81ccd3 100644 --- a/python/servo/mutation/test.py +++ b/python/servo/mutation/test.py @@ -51,7 +51,7 @@ def mutation_test(file_name, tests): mutated_line = mutate_random_line(file_name, strategy) if mutated_line != -1: print "Mutating {0} at line {1}".format(file_name, mutated_line) - print "compling mutant {0}:{1}".format(file_name, mutated_line) + print "compiling mutant {0}:{1}".format(file_name, mutated_line) sys.stdout.flush() subprocess.call('python mach build --release', shell=True, stdout=DEVNULL) for test in tests: |