← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~jugmac00/launchpad:fix-typos-in-layers-py into launchpad:master

 

Jürgen Gmach has proposed merging ~jugmac00/launchpad:fix-typos-in-layers-py into launchpad:master.

Commit message:
Fix typos

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~jugmac00/launchpad/+git/launchpad/+merge/411577
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~jugmac00/launchpad:fix-typos-in-layers-py into launchpad:master.
diff --git a/lib/lp/testing/layers.py b/lib/lp/testing/layers.py
index 632a255..a908ac3 100644
--- a/lib/lp/testing/layers.py
+++ b/lib/lp/testing/layers.py
@@ -11,7 +11,7 @@ and testTearDown. If you don't do this, a base class' method will be called
 instead probably breaking something.
 
 Preferred style is to not use the 'cls' argument to Layer class methods,
-as this is unambguious.
+as this is unambiguous.
 
 TODO: Make the Zope3 test runner handle multiple layers per test instead
 of one, forcing us to attempt to make some sort of layer tree.
@@ -327,7 +327,7 @@ class BaseLayer:
         BaseLayer.check()
         BaseLayer.original_working_directory = os.getcwd()
 
-        # Tests and test infrastruture sometimes needs to know the test
+        # Tests and test infrastructure sometimes needs to know the test
         # name.  The testrunner doesn't provide this, so we have to do
         # some snooping.
         import inspect
@@ -408,7 +408,7 @@ class BaseLayer:
             BaseLayer.flagTestIsolationFailure(
                 "Test left SIGCHLD handler.")
 
-        # Objects with __del__ methods cannot participate in refence cycles.
+        # Objects with __del__ methods cannot participate in reference cycles.
         # Fail tests with memory leaks now rather than when Launchpad crashes
         # due to a leak because someone ignored the warnings.
         if gc.garbage: