Shaurya Agarwal
Shaurya Agarwal
I did not get the same error as you. However, please note that [contribution_tools.md](https://github.com/carbon-language/carbon-lang/blob/trunk/docs/project/contribution_tools.md?plain=1#L142) does state that `export PATH="$(brew --prefix llvm)/bin:${PATH}"` is **only** needed in MacOS and not Linux. However,...
Yeah, sure. @Ram81
@Ram81 Can you please assign me this issue. I have almost solved it, I just need to make a PR. The issue is at [line 365](https://github.com/Cloud-CV/EvalAI/blob/e884666e789fec9b44da1d8974c7244f099b99f3/frontend_v2/src/app/components/challenge/challengeviewallsubmissions/challengeviewallsubmissions.component.ts#L365) as the `environment.api_endpoint` is...
For testing purposes `environment.api_endpoint` should be set to `http://localhost:8000/api/`, and for production it should be `http://eval.ai/api/` (which it is already set to), but it is using the `environment.staging.ts` for testing...
Some unit test also do not URL encode `'` (single-quotes character). `'` character needs to be changed to `%27` too
@umeshp7 I have already made a PR #437 that corrects this issue.
The issue is that it is not replacing '%' sign correctly when it is passed as params in the Request body. #### To Reproduce: Pass a parameter with '%' as...
@webholik In that case, one cannot just copy any URL (say from chrome's URL bar), and paste it in Postman's URL Field. I have made a PR #437 that fixes...
One of test in golang is failing because the generated code snippet includes `url := "https://google.com/"` instead of `url := "https://google.com"` Can someone help me with this? @webholik
Made a few changes in test files as mentioned in #438