mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
avoid duplicate code.
This commit is contained in:
parent
11449de1b4
commit
3ee4e134a8
1 changed files with 2 additions and 2 deletions
|
@ -44,9 +44,9 @@ class Mock_S_Game:
|
|||
class MyTests(unittest.TestCase):
|
||||
def _calc_Scorpion_stack(self, isScorpionTail):
|
||||
g = MockGame()
|
||||
stack = (ScorpionTail_RowStack(0, 0, g)
|
||||
stack = (ScorpionTail_RowStack
|
||||
if isScorpionTail
|
||||
else Scorpion_RowStack(0, 0, g))
|
||||
else Scorpion_RowStack)(0, 0, g)
|
||||
for s, r in [(2, 5), (3, 7), (2, 7), (2, 0), (2, 3), (2, 4), (1, 4)]:
|
||||
c = AbstractCard(1000+r*100+s*10, 0, s, r, g)
|
||||
c.face_up = True
|
||||
|
|
Loading…
Add table
Reference in a new issue