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

Unified Diff: native_client_sdk/src/build_tools/tests/sdktools_commands_test.py

Issue 2059143002: "up-to-date" should only use hyphens when used as compound modifier of a noun (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/build_tools/tests/sdktools_commands_test.py
diff --git a/native_client_sdk/src/build_tools/tests/sdktools_commands_test.py b/native_client_sdk/src/build_tools/tests/sdktools_commands_test.py
index d118186a366b2481ed20b2e86789c7bb9b716b81..1e84f0c00857adbc0193be3f15c0a6cbe62e4cef 100755
--- a/native_client_sdk/src/build_tools/tests/sdktools_commands_test.py
+++ b/native_client_sdk/src/build_tools/tests/sdktools_commands_test.py
@@ -119,7 +119,7 @@ class TestCommands(SdkToolsTestCase):
self.assertTrue(re.search('I.*?sdk_tools.*?stable', output, re.MULTILINE))
# This line is important (it's used by the updater to determine if the
# sdk_tools bundle needs to be updated), so let's be explicit.
- self.assertTrue('All installed bundles are up-to-date.')
+ self.assertTrue('All installed bundles are up to date.')
def testListMultiple(self):
"""The list command should display multiple bundles."""
@@ -207,13 +207,13 @@ class TestCommands(SdkToolsTestCase):
os.path.join(self.basedir, 'nacl_sdk', 'pepper_23', 'dummy.txt')))
def testUpdateNoNewVersion(self):
- """The update command should do nothing if the bundle is already up-to-date.
+ """The update command should do nothing if the bundle is already up to date.
"""
self._AddDummyBundle(self.manifest, 'pepper_23')
self._WriteManifest()
self._Run(['update', 'pepper_23'])
output = self._Run(['update', 'pepper_23'])
- self.assertTrue('is already up-to-date.' in output)
+ self.assertTrue('is already up to date.' in output)
def testUpdateWithNewVersion(self):
"""The update command should update to a new version if it exists."""
« no previous file with comments | « native_client_sdk/src/build_tools/sdk_tools/command/update.py ('k') | native_client_sdk/src/doc/sdk/release-notes.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698