summaryrefslogtreecommitdiff
path: root/morphlib/morphset_tests.py
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2014-08-08 15:42:03 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2014-08-08 15:48:53 +0000
commit4bc4a193a87565bc027b1aa18185bd0502633b16 (patch)
tree0565c3408227d7422bd77fccb618887f931b8a64 /morphlib/morphset_tests.py
parentd69df54e580cbd75d0e4a3b8ef28e7b1feb6030b (diff)
downloadmorph-4bc4a193a87565bc027b1aa18185bd0502633b16.tar.gz
Rename morph3 to morphologybaserock/adamcoldrick/remove-morph2
Instead of leaving morph3 with a potentially confusing name, rename it to `morphology` since it is now the only implementation of the Morphology class.
Diffstat (limited to 'morphlib/morphset_tests.py')
-rw-r--r--morphlib/morphset_tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/morphlib/morphset_tests.py b/morphlib/morphset_tests.py
index 8679c64a..2ab8adc4 100644
--- a/morphlib/morphset_tests.py
+++ b/morphlib/morphset_tests.py
@@ -26,7 +26,7 @@ class MorphologySetTests(unittest.TestCase):
def setUp(self):
self.morphs = morphlib.morphset.MorphologySet()
- self.system = morphlib.morph3.Morphology({
+ self.system = morphlib.morphology.Morphology({
'kind': 'system',
'name': 'foo-system',
'strata': [
@@ -41,7 +41,7 @@ class MorphologySetTests(unittest.TestCase):
self.system.ref = 'master'
self.system.filename = 'foo-system.morph'
- self.stratum = morphlib.morph3.Morphology({
+ self.stratum = morphlib.morphology.Morphology({
'kind': 'stratum',
'name': 'foo-stratum',
'chunks': [
@@ -111,7 +111,7 @@ class MorphologySetTests(unittest.TestCase):
})
def test_changes_stratum_ref_in_build_depends(self):
- other_stratum = morphlib.morph3.Morphology({
+ other_stratum = morphlib.morphology.Morphology({
'name': 'other-stratum',
'kind': 'stratum',
'chunks': [],