From 055416500d353168d2e59f40888460108d0424e1 Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Sat, 3 Feb 2024 22:38:52 -0500 Subject: [PATCH] Fix API server name --- deploy/tests/legislator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/tests/legislator.sh b/deploy/tests/legislator.sh index f389123..36ebbfd 100755 --- a/deploy/tests/legislator.sh +++ b/deploy/tests/legislator.sh @@ -1,7 +1,7 @@ #!/bin/bash -e # Hit the API for a legislator, save the JSON to a temporary file. -curl -s -o /tmp/legislator.json http://localhost:5001/1.1/legislator/rbbell.json +curl -s -o /tmp/legislator.json http://api/1.1/legislator/rbbell.json # Compare the API response to the known-good response. cmp -s /tmp/legislator.json legislator.json > /dev/null