commit/galaxy-central: carlfeberhard: Fix to 578b918
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/ed003906850c/ Changeset: ed003906850c User: carlfeberhard Date: 2014-02-10 23:25:55 Summary: Fix to 578b918 Affected #: 2 files diff -r 578b9185b556ce59c170d3fa0b422bd7773d0693 -r ed003906850cce820f74afa3b2ae227ae03f38aa lib/galaxy/webapps/galaxy/api/histories.py --- a/lib/galaxy/webapps/galaxy/api/histories.py +++ b/lib/galaxy/webapps/galaxy/api/histories.py @@ -180,11 +180,6 @@ :rtype: dict :returns: element view of new history """ - def __create_via_import( self, payload ): - return - - def __import_archive( self, trans, archive_type, archive_source ): - hist_name = None if payload.get( 'name', None ): hist_name = restore_text( payload['name'] ) diff -r 578b9185b556ce59c170d3fa0b422bd7773d0693 -r ed003906850cce820f74afa3b2ae227ae03f38aa test/functional/api/test_histories.py --- a/test/functional/api/test_histories.py +++ b/test/functional/api/test_histories.py @@ -61,7 +61,7 @@ import_data = dict( archive_source=full_download_url, archive_type="url" ) import_response = self._post( "histories", data=import_data ) - self._assert_status_code_is( import_response, 200 ) + self._assert_status_code_is( import_response, 201 ) found = False while not found: time.sleep( .1 ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org