Commit d2bdc1d3 by John Chodera (MSKCC)

Fixed another bug in nosetest.

parent c69ef4b7
......@@ -26,7 +26,7 @@ def remove_chain_indices_and_verify(pdbid, chain_indices_to_remove, expected_cha
fixer.removeChains(chainIndices=chain_indices_to_remove)
# Check to make sure asserted chains remain.
chain_ids_remaining = [c.chain_id for c in fixer.structureChains]
assertItemsEqual(chain_ids_remaining, expected_chain_ids_remaining)
assert_items_equal(chain_ids_remaining, expected_chain_ids_remaining)
def test_removechain_indices():
remove_chain_indices_and_verify('4JSV', [], ['B', 'D', 'A', 'C', 'B', 'A'])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment