diff options
| author | alecflett <alecflett@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2> | 2009-09-21 20:29:01 +0000 |
|---|---|---|
| committer | alecflett <alecflett@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2> | 2009-09-21 20:29:01 +0000 |
| commit | 821f14dbdb3d8ff8cb6cd8dd78bb9b8c74836bf1 (patch) | |
| tree | bc3c5ef5143a12f2435c7a8e4d373846f17c54dc /test/test_hardcore_schema_manipulation.py | |
| parent | b30b191aaf7be0b96543529fa3accf0305bf8355 (diff) | |
tweaks to make tests pass - dump_domain->dump_base, etc
git-svn-id: http://freebase-python.googlecode.com/svn/trunk@214 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2
Diffstat (limited to 'test/test_hardcore_schema_manipulation.py')
| -rw-r--r-- | test/test_hardcore_schema_manipulation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_hardcore_schema_manipulation.py b/test/test_hardcore_schema_manipulation.py index 58f7e66..e5640b0 100644 --- a/test/test_hardcore_schema_manipulation.py +++ b/test/test_hardcore_schema_manipulation.py @@ -73,11 +73,11 @@ class TestHardcoreSchemaManipulation(unittest.TestCase): def test_restore_over_restore(self): domain_id = _create_domain() - graph = dump_domain(s, "/base/contractbridge") + graph = dump_base(s, "/base/contractbridge") restore(s, graph, domain_id) # now we restore again... it should raise a MetawebError - self.assertRaises(MetawebError, restore(s, graph, domain_id)) + self.assertRaises(MetawebError, restore, s, graph, domain_id) def test_try_copying_a_cvt(self): |
