diff --git a/tests/test_schemas.py b/tests/test_schemas.py index 28ba1d6..6e5bdee 100644 --- a/tests/test_schemas.py +++ b/tests/test_schemas.py @@ -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) diff --git a/xslt/mmd-to-geonorge.xslt b/xslt/mmd-to-geonorge.xsl similarity index 100% rename from xslt/mmd-to-geonorge.xslt rename to xslt/mmd-to-geonorge.xsl