Skip to content

Commit

Permalink
test: use 127.0.0.1 instead of 0.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelbeltran committed Sep 27, 2024
1 parent 0acfed4 commit 98516fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compass_app/server/test/server_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import 'package:test/test.dart';

void main() {
final port = '8080';
final host = 'http://0.0.0.0:$port';
final host = 'http://127.0.0.1:$port';
late Process p;

var headers = {
Expand Down

0 comments on commit 98516fa

Please sign in to comment.