details: http://www.bx.psu.edu/hg/galaxy/rev/bfd2ee7bff9d changeset: 2563:bfd2ee7bff9d user: Greg Von Kuster <greg@bx.psu.edu> date: Fri Aug 14 10:03:15 2009 -0400 description: Functional test fixes for my last commit. 2 file(s) affected in this change: templates/admin/library/browse_libraries.mako test/base/twilltestcase.py diffs (24 lines): diff -r d2ad22e73b81 -r bfd2ee7bff9d templates/admin/library/browse_libraries.mako --- a/templates/admin/library/browse_libraries.mako Fri Aug 14 09:22:31 2009 -0400 +++ b/templates/admin/library/browse_libraries.mako Fri Aug 14 10:03:15 2009 -0400 @@ -13,7 +13,7 @@ <ul class="manage-table-actions"> %if not deleted: <li> - <a class="action-button" href="${h.url_for( controller='admin', action='library', new=True )}"><span>Create a new library</span></a> + <a class="action-button" href="${h.url_for( controller='admin', action='library', new=True )}"><span>Create a new data library</span></a> </li> <li> <a class="action-button" href="${h.url_for( controller='admin', action='deleted_libraries' )}"><span>Manage deleted libraries</span></a> diff -r d2ad22e73b81 -r bfd2ee7bff9d test/base/twilltestcase.py --- a/test/base/twilltestcase.py Fri Aug 14 09:22:31 2009 -0400 +++ b/test/base/twilltestcase.py Fri Aug 14 10:03:15 2009 -0400 @@ -1003,7 +1003,7 @@ """Create a new library""" self.home() self.visit_url( "%s/admin/library?new=True" % self.url ) - self.check_page_for_string( 'Create a new library' ) + self.check_page_for_string( 'Create a new data library' ) tc.fv( "1", "1", name ) # form field 1 is the field named name... tc.fv( "1", "2", description ) # form field 1 is the field named name... tc.submit( "create_library_button" )