]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
remove errant pdb
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 24 Jan 2015 01:09:46 +0000 (20:09 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 24 Jan 2015 01:09:46 +0000 (20:09 -0500)
tests/test_version_traversal.py

index 8aef0bf7c8306d9bcbc7b8f28ced619db7d89d7e..4d9926d759eb4b8aa645daf002bcfdba57840f7b 100644 (file)
@@ -569,11 +569,8 @@ class ForestTest(MigrationTest):
         )
 
     def test_stamp_to_heads(self):
-        a1, b1, a2, b2 = self.a1, self.b1, self.a2, self.b2
         revs = self.env._stamp_revs("heads", ())
         eq_(len(revs), 2)
-        #import pdb
-        #pdb.set_trace()
         eq_(
             set(r.to_revisions for r in revs),
             set([(self.b1.revision,), (self.b2.revision,)])