Skip to content

Commit

Permalink
Merge pull request #1836 from openedx/asheehan-edx/fixing-test-manufa…
Browse files Browse the repository at this point in the history
…cturing-code

chore: fixing import path error in management command
  • Loading branch information
alex-sheehan-edx committed Aug 7, 2023
2 parents de76181 + a992e4f commit c437c19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ Change Log
Unreleased
----------
[4.0.10]
--------
chore: fixing import path error in management command

[4.0.9]
-------
feat: customizable management command to generate local enterprise data
Expand Down
2 changes: 1 addition & 1 deletion enterprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Your project description goes here.
"""

__version__ = "4.0.9"
__version__ = "4.0.10"

default_app_config = "enterprise.apps.EnterpriseConfig"
2 changes: 1 addition & 1 deletion enterprise/management/commands/manufacture_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# incase other consumers of the command do not have the same factories installed.
# For example:
try:
import common.djangoapps.student.test.factories # pylint: disable=unused-import
import common.djangoapps.student.tests.factories # pylint: disable=unused-import

from test_utils import factories # pylint: disable=unused-import
except ImportError:
Expand Down

0 comments on commit c437c19

Please sign in to comment.