diff options
author | Ryan Williams <rdw@lindenlab.com> | 2008-06-02 23:20:05 +0000 |
---|---|---|
committer | Ryan Williams <rdw@lindenlab.com> | 2008-06-02 23:20:05 +0000 |
commit | af8753b6c64b293f418d799406b5fae0ce8039b7 (patch) | |
tree | 3e76a3af84a717d5a7613e34bf43f4dc288479ea /indra | |
parent | 9db949eec327df4173fde3de934a87bedb0db13c (diff) |
Fixes to make test.py pass. Code changes reviewed by bos.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/test/test_llmanifest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/test/test_llmanifest.py b/indra/test/test_llmanifest.py index dfe79e20d9..78159c98f8 100644 --- a/indra/test/test_llmanifest.py +++ b/indra/test/test_llmanifest.py @@ -56,7 +56,8 @@ class Demo_ArchManifest(llmanifest.LLManifest): class TestLLManifest(unittest.TestCase): mode='static' def setUp(self): - self.m = llmanifest.LLManifest("src", "dst", {'grid':'default', 'platform':'darwin', 'version':(1,2,3,4)}) + self.m = llmanifest.LLManifest({'source':'src', 'dest':'dst', 'grid':'default', 'platform':'darwin', 'version':(1,2,3,4), + 'artwork':'art', 'build':'build'}) def testproperwindowspath(self): self.assertEqual(llmanifest.proper_windows_path("C:\Program Files", "cygwin"),"/cygdrive/c/Program Files") |