eventql: brew style --fix

This commit is contained in:
Mike McQuaid 2019-10-15 09:00:29 +01:00
parent 6889408d2c
commit 4f330b5e6a
No known key found for this signature in database
GPG key ID: 48A898132FD8EE70

View file

@ -30,15 +30,13 @@ class Eventql < Formula
end
test do
begin
pid = fork do
exec bin/"evqld", "--standalone", "--datadir", testpath
end
sleep 1
system bin/"evql", "--database", "test", "-e", "SELECT 42;"
ensure
Process.kill "SIGTERM", pid
Process.wait pid
pid = fork do
exec bin/"evqld", "--standalone", "--datadir", testpath
end
sleep 1
system bin/"evql", "--database", "test", "-e", "SELECT 42;"
ensure
Process.kill "SIGTERM", pid
Process.wait pid
end
end