From 1488fd3969d7b57b2b845a9c074839b5fca8c8c8 Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Wed, 8 Feb 2023 10:35:31 +0100 Subject: [PATCH] locust: specify bin in test --- Formula/locust.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/locust.rb b/Formula/locust.rb index 783cc0a4582..3db9ae0ce9f 100644 --- a/Formula/locust.rb +++ b/Formula/locust.rb @@ -160,6 +160,6 @@ class Locust < Formula ENV["LOCUST_HOST"] = "http://httpbin.org" ENV["LOCUST_USERS"] = "2" - system "locust", "--headless", "--run-time", "10s" + system bin/"locust", "--headless", "--run-time", "10s" end end