Skip to content

Commit dcc47eb

Browse files
committed
Fix test and typos in docs
1 parent d24870d commit dcc47eb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ Install [.NET 6.0](https://dotnet.microsoft.com/download).
2424

2525
Install [check](https://libcheck.github.io/check/) (works with at least 0.14 and 0.15), [valgrind](https://valgrind.org/) and `libsubunit0` (or equivalent for your distribution).
2626

27-
Install [R](https://www.r-project.org/), [devtools](https://devtools.r-lib.org/) by running either `sudo apt install r-cran-devtools` or `R -e 'install.packages("devtools", repos="http://cran.r-project.org"")'` and [tmc-r-tester](https://github.com/testmycode/tmc-rstudio) by running `R -e 'devtools::install_github("testmycode/tmc-r-tester/tmcRtestrunner", build = FALSE)'`. You can set the `R_LIBS_USER` environment variable to control where R packages get installed, for example by setting `export R_LIBS_USER="~/.R"` in your `.bashrc`. If you install `devtools` with the `R -e` command, it has several dependencies that need to be installed. For Ubuntu, they can be installed with
27+
Install [R](https://www.r-project.org/), [devtools](https://devtools.r-lib.org/) by running either `sudo apt install r-cran-devtools` or `R -e 'install.packages("devtools", repos="http://cran.r-project.org")'` and [tmc-r-tester](https://github.com/testmycode/tmc-rstudio) by running `R -e 'devtools::install_github("testmycode/tmc-r-tester/tmcRtestrunner", build = FALSE)'`. You can set the `R_LIBS_USER` environment variable to control where R packages get installed, for example by setting `export R_LIBS_USER="~/.R"` in your `.bashrc`. If you install `devtools` with the `R -e` command, it has several dependencies that need to be installed. For Ubuntu, they can be installed with
2828

2929
```bash
3030
sudo apt install libcurl-dev libxml2-dev libopenssl-dev gcc-c++ libharfbuzz-dev libfribidi-dev libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev
3131
```
3232

33-
With the dependencies instaled, the tests can be run with
33+
With the dependencies installed, the tests can be run with
3434

3535
```bash
3636
cargo test

crates/tmc-testmycode-client/src/client/api_v8.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2488,8 +2488,6 @@ mod test {
24882488
.mock("POST", "/api/v8/core/exercises/0/submissions")
24892489
.match_query(client_matcher())
24902490
.match_body(Matcher::AllOf(vec![
2491-
Matcher::Regex("client_time".to_string()),
2492-
Matcher::Regex("client_nanotime".to_string()),
24932491
Matcher::Regex("submission\\[file\\]".to_string()),
24942492
Matcher::Regex("paste".to_string()),
24952493
Matcher::Regex("message_for_paste".to_string()),

0 commit comments

Comments
 (0)