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-14 13:28:50 +0000
commit5f705f1e2c95b988ae39df7820f4034c49f375e4 (patch)
treed2a4edf71f2c7204808e4543f3d743a81e95a1bd /morphlib/morphset_tests.py
parent43fb9e05c2a22c01c2d432af9500b531106eda8d (diff)
downloadmorph-5f705f1e2c95b988ae39df7820f4034c49f375e4.tar.gz
Rename morph3 to morphology
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 af1333d8..81b5810f 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': [],