Bug 1317099 - Fix filename in check_spidermonkey_style.py error message r?arai draft
authorBharatR123 <bharatraghunthan9767@gmail.com>
Thu, 09 Mar 2017 18:14:03 +0530
changeset 495888 beb9df8748d3de8d1192a8da5e6c20d09bd4529f
parent 495882 1e896b1cf28ae4d1caa8bfc264f97a1f7df8d273
child 548489 66fd55b56e48a957700ceb2562f618def31f29e5
push id48461
push userbmo:bharatraghunthan9767@gmail.com
push dateThu, 09 Mar 2017 12:47:11 +0000
reviewersarai
bugs1317099
milestone55.0a1
Bug 1317099 - Fix filename in check_spidermonkey_style.py error message r?arai MozReview-Commit-ID: 14H09snq6ht
config/check_spidermonkey_style.py
--- a/config/check_spidermonkey_style.py
+++ b/config/check_spidermonkey_style.py
@@ -284,18 +284,18 @@ def check_style():
                 do_file(filename, inclname, file_kind, f, all_inclnames, included_h_inclnames)
 
         edges[inclname] = included_h_inclnames
 
     find_cycles(all_inclnames, edges)
 
     # Compare expected and actual output.
     difflines = difflib.unified_diff(expected_output, actual_output,
-                                     fromfile='check_spider_monkey_style.py expected output',
-                                       tofile='check_spider_monkey_style.py actual output')
+                                     fromfile='check_spidermonkey_style.py expected output',
+                                       tofile='check_spidermonkey_style.py actual output')
     ok = True
     for diffline in difflines:
         ok = False
         print(diffline, end='')
 
     return ok