← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~cjwatson/launchpad:fix-no-metaclass-type into launchpad:master

 

Colin Watson has proposed merging ~cjwatson/launchpad:fix-no-metaclass-type into launchpad:master.

Commit message:
Fix TestStacktrace after removing "__metaclass__ = type"

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/409568
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:fix-no-metaclass-type into launchpad:master.
diff --git a/lib/lp/services/tests/test_stacktrace.py b/lib/lp/services/tests/test_stacktrace.py
index 1f18313..a702c07 100644
--- a/lib/lp/services/tests/test_stacktrace.py
+++ b/lib/lp/services/tests/test_stacktrace.py
@@ -15,7 +15,7 @@ from lp.testing.layers import BaseLayer
 
 # This constant must always be equal to the line number on which it lives for
 # the tests to pass.
-MY_LINE_NUMBER = 20
+MY_LINE_NUMBER = 18
 
 MY_FILE_NAME = __file__[:__file__.rindex('.py')] + '.py'