Skip to content

Commit

Permalink
#201: updated path in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenwh committed Oct 27, 2022
1 parent 277ec2a commit 9a00b73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ def test_mmd_xsd_strict_passing(self):

class TestXSLTs(unittest.TestCase):

def test_mmd_to_geonorge_xslt(self):
translator = ET.XSLT(ET.parse('xslt/mmd-to-geonorge.xslt'))
def test_mmd_to_geonorge_xsl(self):
translator = ET.XSLT(ET.parse('xslt/mmd-to-geonorge.xsl'))
self.assertIsInstance(translator, lxml.etree.XSLT)

def test_dcatap_xslt_instance(self):
def test_dcatap_xsl_instance(self):
transform_to_dcat = ET.XSLT(ET.parse('xslt/mmd-to-dcatap.xsl'))
self.assertIsInstance(transform_to_dcat, lxml.etree.XSLT)

Expand Down

0 comments on commit 9a00b73

Please sign in to comment.