Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/units/model/comment.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/model/comment.py')
-rwxr-xr-xtests/units/model/comment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/model/comment.py b/tests/units/model/comment.py
index 048a6a4..495e6cb 100755
--- a/tests/units/model/comment.py
+++ b/tests/units/model/comment.py
@@ -10,14 +10,14 @@ from sugar_network.model.review import Review
from sugar_network.model.feedback import Feedback
from sugar_network.model.solution import Solution
from sugar_network.model.comment import Comment
-from sugar_network.model.implementation import Implementation
+from sugar_network.model.release import Release
from sugar_network.toolkit import http
class CommentTest(tests.Test):
def test_SetContext(self):
- volume = self.start_master([User, Context, Review, Feedback, Solution, Comment, Implementation])
+ volume = self.start_master([User, Context, Review, Feedback, Solution, Comment, Release])
client = Connection(auth=http.SugarAuth(keyfile.value))
self.assertRaises(http.NotFound, client.post, ['comment'], {'message': '', 'review': 'absent'})