File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/scratchtocatrobat/converter Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: Scratch2Catrobat Converter
4
4
short_name: S2CC
5
5
version: 0.9.1
6
6
build_name: Aegean cat
7
- build_number: 919
7
+ build_number: 920
8
8
9
9
; -------------------------------------------------------------------------------
10
10
[CATROBAT]
Original file line number Diff line number Diff line change @@ -2344,15 +2344,15 @@ def test_can_convert_go_to_sprite_block_with_mouse_position(self):
2344
2344
scratch_block = ["gotoSpriteOrMouse:" , test_sprite_name ]
2345
2345
[catr_brick ] = self .block_converter ._catrobat_bricks_from (scratch_block , DUMMY_CATR_SPRITE )
2346
2346
assert isinstance (catr_brick , catbricks .GoToBrick )
2347
- assert catr_brick .spinnerSelection == 0
2347
+ assert catr_brick .spinnerSelection == 80
2348
2348
2349
2349
#gotoSpriteOrMouse:
2350
2350
def test_can_convert_go_to_sprite_block_with_random_position (self ):
2351
2351
test_sprite_name = "_random_"
2352
2352
scratch_block = ["gotoSpriteOrMouse:" , test_sprite_name ]
2353
2353
[catr_brick ] = self .block_converter ._catrobat_bricks_from (scratch_block , DUMMY_CATR_SPRITE )
2354
2354
assert isinstance (catr_brick , catbricks .GoToBrick )
2355
- assert catr_brick .spinnerSelection == 1
2355
+ assert catr_brick .spinnerSelection == 81
2356
2356
2357
2357
#pointTowards:
2358
2358
def test_can_convert_point_towards_block_basic (self ):
You can’t perform that action at this time.
0 commit comments