@@ -7,7 +7,7 @@ def test_space_can_access_user_namespace_references(ip):
77 ip .run_cell_magic (magic_name = 'space' , line = 'tomato' , cell = 'x' )
88
99
10- def test_space_references_prioritised_over_user_namespace_references (ip ):
10+ def test_space_references_prioritized_over_user_namespace_references (ip ):
1111 ip .run_cell (raw_cell = 'x = 100' )
1212 ip .run_cell_magic (magic_name = 'space' , line = 'tomato' ,
1313 cell = 'x = 99; assert x == 99' )
@@ -59,7 +59,7 @@ def test_space_cannot_add_user_namespace_references_using_global(ip):
5959 assert 'x' not in ip .user_global_ns
6060
6161
62- def test_space_reference_assigments_persist_in_new_magic_call (ip ):
62+ def test_space_reference_assignments_persist_in_new_magic_call (ip ):
6363 ip .run_cell_magic (magic_name = 'space' , line = 'tomato' , cell = 'x = 99' )
6464 ip .run_cell_magic (magic_name = 'space' , line = 'tomato' , cell = 'assert x == 99' )
6565
@@ -71,7 +71,7 @@ def test_space_reference_deletions_persist_in_new_magic_call(ip):
7171 ip .run_cell_magic (magic_name = 'space' , line = 'tomato' , cell = 'x' )
7272
7373
74- def test_space_references_assigments_are_confined_in_one_space_only (ip ):
74+ def test_space_references_assignments_are_confined_in_one_space_only (ip ):
7575 ip .run_cell_magic (magic_name = 'space' , line = 'tomato' , cell = 'x = 99' )
7676 ip .run_cell_magic (magic_name = 'space' , line = 'potato' , cell = 'x = 100' )
7777 ip .run_cell_magic (magic_name = 'space' , line = 'tomato' , cell = 'assert x == 99' )
0 commit comments