File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ use harp::environment::R_ENVS;
11
11
use harp:: exec:: RFunction ;
12
12
use harp:: exec:: RFunctionExt ;
13
13
use harp:: r_symbol;
14
- use harp:: test:: IS_TESTING ;
15
14
use harp:: utils:: r_poke_option;
16
15
use libr:: Rf_ScalarLogical ;
17
16
use libr:: SEXP ;
@@ -77,7 +76,7 @@ pub struct ArkEnvs {
77
76
78
77
pub fn initialize ( ) -> anyhow:: Result < ( ) > {
79
78
// If we are `testing`, set the corresponding R level global option
80
- if IS_TESTING {
79
+ if harp :: IS_TESTING {
81
80
r_poke_option_ark_testing ( )
82
81
}
83
82
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ pub fn setup_r(mut args: Vec<*mut c_char>) {
75
75
//
76
76
// This must be called _after_ `Rf_initialize_R()`, since that's where R
77
77
// detects the stack size and sets the default limit.
78
- if harp:: test :: IS_TESTING {
78
+ if harp:: IS_TESTING {
79
79
libr:: set ( libr:: R_CStackLimit , usize:: MAX ) ;
80
80
}
81
81
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ pub use harp::object::list_get;
62
62
pub use harp:: object:: list_poke;
63
63
pub use harp:: object:: RObject ;
64
64
pub use harp:: symbol:: RSymbol ;
65
+ pub use harp:: test:: IS_TESTING ;
65
66
pub use harp:: utils:: get_option;
66
67
pub use harp_macros:: register;
67
68
You can’t perform that action at this time.
0 commit comments