329602 only clear ServletContext attributes on doStop

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2481 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-11-08 03:36:18 +00:00
parent d3c5317c7f
commit 262d08cd9f
1 changed files with 0 additions and 1 deletions

View File

@ -157,7 +157,6 @@ public class ContextHandlerTest
{
ContextHandler handler = new ContextHandler();
handler.setAttribute("aaa","111");
handler.getServletContext().setAttribute("bbb","222");
assertEquals("111",handler.getServletContext().getAttribute("aaa"));
assertEquals(null,handler.getAttribute("bbb"));