From 2625a41bb78965ffc868252b0f2b293ee3f0fcb8 Mon Sep 17 00:00:00 2001 From: Peter Carbonetto Date: Mon, 25 Feb 2019 22:55:49 -0600 Subject: [PATCH] Removed "Remotes" field from DESCRIPTION. --- DESCRIPTION | 1 - tests/testthat/test_pois.R | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index eca7c1c..624b85a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -58,4 +58,3 @@ URL: https://github.com/stephens999/ashr BugReports: https://github.com/stephens999/ashr/issues RoxygenNote: 6.1.1 VignetteBuilder: knitr -Remotes: stephenslab/mixsqp diff --git a/tests/testthat/test_pois.R b/tests/testthat/test_pois.R index 51914fd..276d98f 100644 --- a/tests/testthat/test_pois.R +++ b/tests/testthat/test_pois.R @@ -57,8 +57,8 @@ test_that("lik_pois (log link) fitted g is close to true g",{ ash.pois.out = ash(rep(0,length(x)),1,lik = lik_pois(x,link="log"), g = trueg,control = list(verbose = TRUE)) - # Check if the estimated mixture proportion for components delta(0) and U(-3,3) - # is close to the true mixture proportion (0.8,0.2) + # Check if the estimated mixture proportion for components delta(0) + # and U(-3,3) is close to the true mixture proportion (0.8,0.2) expect_equal(ash.pois.out$fitted_g$pi, c(0.8,0.2), tolerance = 0.05) })