lib/popcorn: move examples tests to nice and tidy tests/ directories.
[nit.git] / lib / popcorn / examples / angular / tests / test_example_angular.nit
@@ -29,10 +29,10 @@ class TestExampleAngular
                system "curl -s {host}:{port}/not_found" # handled by angular controller
        end
 
-       fun test_example_param_route do
+       fun test_example_angular do
                var app = new App
                app.use("/counter", new CounterAPI)
-               app.use("/*", new StaticHandler("../examples/angular/www/", "index.html"))
+               app.use("/*", new StaticHandler("examples/angular/www/", "index.html"))
                run_test(app)
        end
 end