Skip to content

Commit 2ce6ca3

Browse files
committed
self.assertEqual -> self.assertCountEqual
1 parent 398d15f commit 2ce6ca3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Deployed on July 14th, 2025
1111
* SPP: merged and deprecated [mg-scripts](https://github.com/qiita-spots/mg-scripts) to [qp-knight-lab-processing](https://github.com/qiita-spots/qp-knight-lab-processing).
1212
* SPP: Added integration tests via a couple of PRs: [#129](https://github.com/qiita-spots/qp-knight-lab-processing/pull/129) & [#131](https://github.com/qiita-spots/qp-knight-lab-processing/pull/131).
1313
* SPP: Added new command `Human Filter & QC existing Prep` to facilitate human-filtering existing preparations.
14-
* SPP: Cleaned and centralized sequencers information to [kl-metapool](https://github.com/biocore/kl-metapool), thank you @AmandaBirmingham.
14+
* SPP: Cleaned and centralized sequencers information to [kl-metapool](https://github.com/biocore/kl-metapool) & added `MiSeq i100`, thank you @AmandaBirmingham.
1515

1616

1717

qiita_db/test/test_user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,12 +482,12 @@ def test_mark_messages(self):
482482
user.mark_messages([1, 2])
483483
obs = user.messages()
484484
exp = [True, True, False]
485-
self.assertEqual([x[3] for x in obs], exp)
485+
self.assertCountEqual([x[3] for x in obs], exp)
486486

487487
user.mark_messages([1], read=False)
488488
obs = user.messages()
489489
exp = [False, True, False]
490-
self.assertEqual([x[3] for x in obs], exp)
490+
self.assertCountEqual([x[3] for x in obs], exp)
491491

492492
def test_delete_messages(self):
493493
user = qdb.user.User.create('deletemsg@test.bar', 'password')

0 commit comments

Comments
 (0)