Skip to content

Commit ce2a7ff

Browse files
authored
Moved error line after expected failure (#1766)
1 parent c0e5870 commit ce2a7ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client/src/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,10 +601,10 @@ export class PercyClient {
601601
}
602602
}, { identifier: 'comparison.tile.verify', ...meta });
603603
} catch (error) {
604-
this.log.error(error);
605604
if (error.response.statusCode === 400) {
606605
return false;
607606
}
607+
this.log.error(error);
608608
throw error;
609609
}
610610
}

0 commit comments

Comments
 (0)