diff --git a/DESCRIPTION b/DESCRIPTION index 296c093..d49cb03 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -11,7 +11,7 @@ URL: https://github.com/Tomeriko96/polyglotr/, BugReports: https://github.com/Tomeriko96/polyglotr/issues Encoding: UTF-8 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 Imports: dplyr, httr, diff --git a/tests/testthat/test-google_translate.R b/tests/testthat/test-google_translate.R index 3b611fc..f2e9257 100644 --- a/tests/testthat/test-google_translate.R +++ b/tests/testthat/test-google_translate.R @@ -21,7 +21,7 @@ test_that("google_translate returns correct translation for unvectorized input", text_to_translate <- "I love languages" translation <- google_translate(text_to_translate, target_language = "es") - expected_translation <- "me encantan los idiomas" + expected_translation <- "Me encantan los idiomas" expect_equal(translation, expected_translation) })