Skip to content

Commit

Permalink
Merge pull request #593 from biocore/csymons_sbi_article_code
Browse files Browse the repository at this point in the history
Add SBI Kit Article Code
  • Loading branch information
cassidysymons authored Jan 10, 2025
2 parents 0544df4 + 200586c commit 210e5c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions microsetta_private_api/admin/tests/test_admin_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ def test_get_daklapack_articles_not_retired(self):
with Transaction() as t:
admin_repo = AdminRepo(t)
articles = admin_repo.get_daklapack_articles()
self.assertEqual(8, len(articles))
self.assertEqual(9, len(articles))
first_article = articles[0]
first_article.pop("dak_article_id")
self.assertEqual(FIRST_LIVE_DAK_ARTICLE, first_article)
Expand All @@ -1216,7 +1216,7 @@ def test_get_daklapack_articles_all(self):
with Transaction() as t:
admin_repo = AdminRepo(t)
articles = admin_repo.get_daklapack_articles(include_retired=True)
self.assertEqual(24, len(articles))
self.assertEqual(25, len(articles))
first_article = articles[0]
first_article.pop("dak_article_id")
self.assertEqual(FIRST_DAK_ARTICLE, first_article)
Expand Down
2 changes: 2 additions & 0 deletions microsetta_private_api/db/patches/0143.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- Add article code for Skin Biome Initiative kit
INSERT INTO barcodes.daklapack_article (dak_article_code, short_description, detailed_description) VALUES ('3510007E', 'SBI 1matrix tube', 'SBI 1 matrix tube, American English');

0 comments on commit 210e5c3

Please sign in to comment.