summaryrefslogtreecommitdiff
path: root/morphlib/localartifactcache_tests.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2013-06-07 10:51:03 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2013-06-07 12:20:23 +0000
commit50d844c340016ebef54f1c0daee5cbeb4692764f (patch)
tree509383d9687e7eb010e6949df894d0e81f06b70c /morphlib/localartifactcache_tests.py
parent7fcc0a0afa714b9f731fb3e55ff19f5e632fbb2c (diff)
downloadmorph-50d844c340016ebef54f1c0daee5cbeb4692764f.tar.gz
lac_tests: set cache key
Diffstat (limited to 'morphlib/localartifactcache_tests.py')
-rw-r--r--morphlib/localartifactcache_tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/morphlib/localartifactcache_tests.py b/morphlib/localartifactcache_tests.py
index 36b5e891..10f3ab6b 100644
--- a/morphlib/localartifactcache_tests.py
+++ b/morphlib/localartifactcache_tests.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 Codethink Limited
+# Copyright (C) 2012,2013 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -47,8 +47,10 @@ class LocalArtifactCacheTests(unittest.TestCase):
'repo', 'ref', 'sha1', 'tree', morph, 'chunk.morph')
self.runtime_artifact = morphlib.artifact.Artifact(
self.source, 'chunk-runtime')
+ self.runtime_artifact.cache_key = '0'*64
self.devel_artifact = morphlib.artifact.Artifact(
self.source, 'chunk-devel')
+ self.devel_artifact.cache_key = '0'*64
def tearDown(self):
self.tempdir.remove()