Skip to content

Commit

Permalink
Fix rap comp table
Browse files Browse the repository at this point in the history
  • Loading branch information
ldavies99 committed Jan 5, 2024
1 parent 78370a9 commit 2e00d5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions R/frequency-tables.R
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ summarise_rap_comp <- function(data) {
"Team open source code",
"Version control",
"Peer review",
"Development QA",
"Proportionate QA",
"Documentation",
"Functions",
"Unit testing",
Expand All @@ -443,7 +443,7 @@ summarise_rap_comp <- function(data) {
"open_code_score",
"version_control_score",
"peer_review_score",
"development_QA_score",
"proportionate_QA_score",
"doc_score",
"function_score",
"unit_test_score",
Expand Down
6 changes: 3 additions & 3 deletions tests/testthat/test-summarise_rap_comp.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dummy_data <- data.frame(
open_code_score = rep(c(NA, 1, 0), times = 5),
version_control_score = rep(c(NA, 1, 0), times = 5),
peer_review_score = rep(c(NA, 1, 0), times = 5),
development_QA_score = rep(c(NA, 1, 0), times = 5),
proportionate_QA_score = rep(c(NA, 1, 0), times = 5),
doc_score = rep(c(NA, 1, 0), times = 5),
basic_rap_score = rep(c(NA, 1, 0), times = 5),
function_score = rep(c(NA, 1, 0), times = 5),
Expand Down Expand Up @@ -48,7 +48,7 @@ test_that("summarise_rap_comp output is as expected", {
"Team open source code",
"Version control",
"Peer review",
"Development QA",
"Proportionate QA",
"Documentation",
"Functions",
"Unit testing",
Expand All @@ -62,7 +62,7 @@ test_that("summarise_rap_comp output is as expected", {
"Team open source code",
"Version control",
"Peer review",
"Development QA",
"Proportionate QA",
"Documentation",
"Functions",
"Unit testing",
Expand Down

0 comments on commit 2e00d5b

Please sign in to comment.