From a1ca220477092398efc8e587dd653f5cb967d0e9 Mon Sep 17 00:00:00 2001 From: elad-aharon <137701473+elad-aharon@users.noreply.github.com> Date: Mon, 28 Aug 2023 19:22:13 +0300 Subject: [PATCH] fix typo in TESTING.md server path (#2774) following TESTING.md instructions, I got an error: "stat ./server/server.go: no such file or directory" server.go path is: integration/server/cmd/integration/server.go --- TESTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TESTING.md b/TESTING.md index b8adadd6492..2677b33e486 100644 --- a/TESTING.md +++ b/TESTING.md @@ -25,7 +25,7 @@ Setting up the integration environment is a little tricky: ```bash cd integration go generate ./... -go run ./server/server.go +go run ./server/cmd/integration/server.go ``` in another terminal ```bash