Skip to content

Commit

Permalink
update unittest on crosslink input
Browse files Browse the repository at this point in the history
  • Loading branch information
dingquanyu committed Nov 13, 2023
1 parent 8434a59 commit 8ddbc19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_crosslink_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class TestCreateObjects(unittest.TestCase):
def setUp(self) -> None:
self.crosslink_info ="./test/test_data/test_xl_input.pkl.gz"
self.asym_id = [1]*10 + [2]*25 + [3]*40
self.asym_id = torch.tensor([1]*10 + [2]*25 + [3]*40)
self.chain_id_map = {
"A":_FastaChain(sequence='',description='chain1'),
"B":_FastaChain(sequence='',description='chain2'),
Expand Down

0 comments on commit 8ddbc19

Please sign in to comment.