Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(687)

Side by Side Diff: client/third_party/chromium/natsort_test.py

Issue 2013943002: Changing license header, again! (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # that can be found in the LICENSE file.
5 5
6 """Unit tests for nasort.py.""" 6 """Unit tests for nasort.py."""
7 7
8 import doctest 8 import doctest
9 import os 9 import os
10 import sys 10 import sys
11 11
12 import natsort 12 import natsort
13 13
14 14
15 if __name__ == '__main__': 15 if __name__ == '__main__':
16 doctest.testmod(natsort) 16 doctest.testmod(natsort)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698