-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix order #306
Conversation
Code Coverage Summary
Diff against main
Results for commit: d227c99 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Unit Tests Summary 1 files 14 suites 2s ⏱️ Results for commit d227c99. ♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀
Tested on simple example.
tdata <- teal_data(x1 = iris, x2 = mtcars,
code = "x1 <- iris
x2 <- mtcars
x1 <- x1[1:10,]")
get_code(tdata, datanames = c("x1", "x2"))
before:
"x1 <- iris" "x1 <- x1[1:10, ]" "x2 <- mtcars"
after:
"x1 <- iris" "x2 <- mtcars" "x1 <- x1[1:10, ]"
Fix order of returned lines