From 794e7ebdcd6ab80f0cba235c46fba46b8c5c3cef Mon Sep 17 00:00:00 2001 From: Simon Poirier Date: Fri, 30 Oct 2009 20:28:15 +0000 Subject: test utils and NotImplemented tests cleaning --- (limited to 'tutorius/store.py') diff --git a/tutorius/store.py b/tutorius/store.py index 480c81b..9c8bdff 100644 --- a/tutorius/store.py +++ b/tutorius/store.py @@ -136,7 +136,7 @@ class StoreProxy(object): content itself and not the path to the file. @return True if the tutorial was sent correctly, False otherwise. """ - raise NotImplemetedError("publish() not implemented") + raise NotImplementedError("publish() not implemented") def unpublish(self, tutorial_store_id): """ @@ -149,7 +149,7 @@ class StoreProxy(object): @param tutorial_store_id The ID of the tutorial to be removed @return True if the tutorial was properly removed from the server """ - raise NotImplementedError("unpublish() not implemeted") + raise NotImplementedError("unpublish() not implemented") def update_published_tutorial(self, tutorial_id, tutorial): """ -- cgit v0.9.1