Skip to content

Commit

Permalink
chore: remove reference to deprecated HierarchyMixin
Browse files Browse the repository at this point in the history
This has been a no-op for a long time anyway, since HierarchyMixin
has been explicitly mixed into XBlock for as long as I remember.

Ref: openedx/XBlock#714
  • Loading branch information
kdmccormick committed Mar 19, 2024
1 parent ee69edb commit 4740af6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions xmodule/tests/xml/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from factory import Factory, Sequence, lazy_attribute, post_generation
from fs.osfs import OSFS
from lxml import etree
from xblock.mixins import HierarchyMixin

from xmodule.modulestore.inheritance import InheritanceMixin
from xmodule.x_module import XModuleMixin
Expand Down Expand Up @@ -70,7 +69,7 @@ class Meta:
model = XmlImportData

filesystem = OSFS(mkdtemp())
xblock_mixins = (InheritanceMixin, XModuleMixin, HierarchyMixin)
xblock_mixins = (InheritanceMixin, XModuleMixin)
url_name = Sequence(str)
attribs = {}
policy = {}
Expand Down

0 comments on commit 4740af6

Please sign in to comment.