We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96f445c commit cb60509Copy full SHA for cb60509
testmod.py
@@ -254,9 +254,10 @@ async def test_commands_api(api):
254
'y': xyz[1],
255
'z': xyz[2],
256
'ComputerId': AnyInstanceOf(int),
257
- 'id': 'computercraft:command_computer',
+ 'id': 'computercraft:computer_command',
258
'On': 1,
259
},
260
+ 'tags': {},
261
}
262
263
assert await api.commands.getBlockInfo(*xyz) == expected_binfo
@@ -283,9 +284,6 @@ async def test_commands_api(api):
283
284
285
286
async def test_fs_api(api):
- from pprint import pprint
287
- pprint(get_class_table(api.fs.__class__))
288
- pprint(await get_object_table(api, 'fs'))
289
assert get_class_table(api.fs.__class__) \
290
== await get_object_table(api, 'fs')
291
0 commit comments