Skip to content

Commit

Permalink
Fixed test name error in Lattice tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bjmorgan committed Aug 30, 2018
1 parent b7ec534 commit 0819785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_lattice.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def test_is_blocked_returns_true( self, p_jumps, pbc, islt, site_id ):
@patch( 'lattice_mc.lattice.Lattice.initialise_site_lookup_table' )
@patch( 'lattice_mc.lattice.Lattice.enforce_periodic_boundary_conditions' )
@patch( 'lattice_mc.lattice.Lattice.potential_jumps' )
def test_is_blocked_returns_true( self, p_jumps, pbc, islt, site_id ):
def test_is_blocked_returns_false( self, p_jumps, pbc, islt, site_id ):
p_jumps.return_value = [ Mock( spec=Jump ) ]
site_id.side_effect = ( 1, 2 )
site_labels = [ 'A', 'A' ]
Expand Down

0 comments on commit 0819785

Please sign in to comment.