Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/python | |
| 2 # | |
| 3 # Copyright $YEAR The Chromium Authors. All rights reserved. | |
|
qyearsley
2016/03/07 19:09:53
$YEAR -> 2016
bokan
2016/03/07 22:59:15
Doh! Thanks
| |
| 4 # Use of this source code is governed by a BSD-style license that can be | |
| 5 # found in the LICENSE file. | |
| 6 | |
| 7 import sys | |
| 8 | |
| 9 from webkitpy.common import host | |
| 10 from webkitpy.layout_tests import update_test_expectations | |
| 11 | |
| 12 update_test_expectations.main(host.Host(), sys.argv[1:]) | |
| OLD | NEW |