Skip to content

Commit

Permalink
Merge pull request #12 from openedx/pwnage101/ENT-6886
Browse files Browse the repository at this point in the history
test: add factory field required for ENT-6886
  • Loading branch information
pwnage101 authored Mar 17, 2023
2 parents 18f51dd + 6ec9539 commit 45dd15b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion openedx_ledger/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
A library that records transactions against a ledger, denominated in units of value.
"""
__version__ = "0.1.7"
__version__ = "0.1.8"

default_app_config = "openedx_ledger.apps.EdxLedgerConfig"
1 change: 1 addition & 0 deletions openedx_ledger/test_utils/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ class Meta:
state = TransactionStateChoices.CREATED
quantity = factory.Faker("random_int", min=-100000, max=-100)
ledger = factory.Iterator(Ledger.objects.all())
lms_user_id = factory.Faker("random_int", min=1, max=1000)

0 comments on commit 45dd15b

Please sign in to comment.