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

Side by Side Diff: Tools/Scripts/webkitpy/common/net/buildbot/chromiumbuildbot_unittest.py

Issue 23541008: Fix stray webkitpy unit test after r157385. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 2013 Google Inc. All rights reserved. 1 # Copyright (C) 2013 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 22 matching lines...) Expand all
33 33
34 class ChromiumBuilderTest(unittest.TestCase): 34 class ChromiumBuilderTest(unittest.TestCase):
35 def test_results_url(self): 35 def test_results_url(self):
36 builder = ChromiumBuildBot().builder_with_name('WebKit Mac10.8 (dbg)') 36 builder = ChromiumBuildBot().builder_with_name('WebKit Mac10.8 (dbg)')
37 self.assertEqual(builder.results_url(), 37 self.assertEqual(builder.results_url(),
38 'https://storage.googleapis.com/chromium-layout-test-ar chives/WebKit_Mac10_8__dbg_') 38 'https://storage.googleapis.com/chromium-layout-test-ar chives/WebKit_Mac10_8__dbg_')
39 39
40 def test_accumulated_results_url(self): 40 def test_accumulated_results_url(self):
41 builder = ChromiumBuildBot().builder_with_name('WebKit Mac10.8 (dbg)') 41 builder = ChromiumBuildBot().builder_with_name('WebKit Mac10.8 (dbg)')
42 self.assertEqual(builder.accumulated_results_url(), 42 self.assertEqual(builder.accumulated_results_url(),
43 'https://storage.googleapis.com/chromium-layout-test-ar chives/WebKit_Mac10_8__dbg_/results/layout-test-results/layout-test-results') 43 'https://storage.googleapis.com/chromium-layout-test-ar chives/WebKit_Mac10_8__dbg_/results/layout-test-results')
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698