From 52d37cfeae66ad7943dbf4a84121e6b8f5a7b26e Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Wed, 6 May 2020 15:09:23 +0300 Subject: [PATCH] fix merged code --- tests/lib/pysol_tests/game_drag.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/lib/pysol_tests/game_drag.py b/tests/lib/pysol_tests/game_drag.py index c59ce23d..a5a833b9 100644 --- a/tests/lib/pysol_tests/game_drag.py +++ b/tests/lib/pysol_tests/game_drag.py @@ -2,11 +2,7 @@ import unittest -<<<<<<< HEAD from pysollib.game import GameDrag, GameStacks -======= -from pysollib.game import GameDrag ->>>>>>> f3d3517... add missing attribute. class MyTests(unittest.TestCase): @@ -14,12 +10,9 @@ class MyTests(unittest.TestCase): d = GameDrag() d.shadows.append("test") self.assertTrue(len(d.shadows)) -<<<<<<< HEAD def test_addattr(self): s = GameStacks() s.addattr(tableaux=[]) s.tableaux.append("myval") self.assertEqual(s.tableaux, ["myval"]) -======= ->>>>>>> f3d3517... add missing attribute.