Skip to content

Commit

Permalink
missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
tbates committed Apr 28, 2017
1 parent e653368 commit b1b72c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test_umx_is_RAM.r
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ m2 <- mxModel("One Factor",
mxMatrix("Diag", 5, 5, values = 1, free = T, name = "U"),
mxAlgebra(A %*% L %*% t(A) + U, name = "R"),
mxExpectationNormal("R", dimnames = names(demoOneFactor)),
mxFitFunctionML()
mxFitFunctionML(),
mxData(cov(demoOneFactor), type = "cov", numObs = 500)
)
m2 = mxRun(m2)
Expand Down

0 comments on commit b1b72c2

Please sign in to comment.