converted unit tests, started rewriting filters

--HG--
branch : trunk
diff --git a/tests/test_syntax.py b/tests/test_syntax.py
index c31c0fb..81cc533 100644
--- a/tests/test_syntax.py
+++ b/tests/test_syntax.py
@@ -6,8 +6,8 @@
     :copyright: 2007 by Armin Ronacher.
     :license: BSD, see LICENSE for more details.
 """
-from jinja import Environment, DictLoader
-from jinja.exceptions import TemplateSyntaxError
+from jinja2 import Environment, DictLoader
+from jinja2.exceptions import TemplateSyntaxError
 
 
 CALL = '''{{ foo('a', c='d', e='f', *['b'], **{'g': 'h'}) }}'''
@@ -46,7 +46,7 @@
 
 
 def test_call():
-    from jinja import Environment
+    from jinja2 import Environment
     env = Environment()
     env.globals['foo'] = lambda a, b, c, e, g: a + b + c + e + g
     tmpl = env.from_string(CALL)