Tests: changed default HTTP2 host header to localhost.

This simplification is consistent to the host headers used in other places.
diff --git a/lib/Test/Nginx/HTTP2.pm b/lib/Test/Nginx/HTTP2.pm
index 00315f3..d6b5809 100644
--- a/lib/Test/Nginx/HTTP2.pm
+++ b/lib/Test/Nginx/HTTP2.pm
@@ -166,7 +166,7 @@
 
 	$ctx->{headers} = '';
 
-	my $host = $uri->{host} || '127.0.0.1:8080';
+	my $host = $uri->{host} || 'localhost';
 	my $method = $uri->{method} || 'GET';
 	my $scheme = $uri->{scheme} || 'http';
 	my $path = $uri->{path} || '/';