From fbf8cba4ec0b9f16a8f869b6348a9b9b8f2a72ce Mon Sep 17 00:00:00 2001 From: Will Pearl Date: Thu, 5 Oct 2023 13:31:53 -0500 Subject: [PATCH] Fixed typo Changed 'server reponse' to 'server response' in the executeElementCommand error. --- driver/lib/sessions/observatory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/lib/sessions/observatory.ts b/driver/lib/sessions/observatory.ts index 54b2246d..2806641e 100644 --- a/driver/lib/sessions/observatory.ts +++ b/driver/lib/sessions/observatory.ts @@ -195,7 +195,7 @@ export const executeElementCommand = async function( log.debug(`<<< ${JSON.stringify(data)} | previous command ${command}`); if (data.isError) { throw new Error( - `Cannot execute command ${command}, server reponse ${JSON.stringify(data, null, 2)}`, + `Cannot execute command ${command}, server response ${JSON.stringify(data, null, 2)}`, ); } return data.response;