lib/popcorn: move examples tests to nice and tidy tests/ directories.
[nit.git] / lib / popcorn / examples / static_files / tests / test_example_static_default.nit
@@ -32,9 +32,9 @@ class TestExampleStaticDefault
                system "curl -s {host}:{port}/not_found.nit"
        end
 
-       fun test_example_param_route do
+       fun test_example_static_default do
                var app = new App
-               app.use("/", new StaticHandler("../examples/static_files/public/", "default.html"))
+               app.use("/", new StaticHandler("examples/static_files/public/", "default.html"))
                run_test(app)
        end
 end