Tests: js_return.t TODO remnants for old njs versions removed.
diff --git a/js_return.t b/js_return.t
index e6055c1..f7f9db7 100644
--- a/js_return.t
+++ b/js_return.t
@@ -74,13 +74,6 @@
 like(http_get('/?c=200&t=SEE-THIS'), qr/200 OK.*^SEE-THIS$/ms, 'return text');
 like(http_get('/?c=301&t=path'), qr/ 301 .*Location: path/s, 'return redirect');
 like(http_get('/?c=404'), qr/404 Not.*html/s, 'return error page');
-
-TODO: {
-my ($v) = http_get('/njs') =~ /^([.0-9]+)$/m;
-local $TODO = 'not yet' unless $Config{archname} !~ /aarch64/;
-
 like(http_get('/?c=inv'), qr/ 500 /, 'return invalid');
 
-}
-
 ###############################################################################