Commit 7fb4eee
authored
Merge pull request #187 from teunbrand/compat_ggplot2_400
ggplot2 transitioned from S3 class to S7 class, hence affecting several functions including
```
expect_s3_class(p, "ggplot")
expect_length(p, 11)
expect_type(p, "list")
```
which directly affects the testing script for function add_scaling_component_to_delta_plot().
The output of this function is a list, and the first element of the list is a ggplot2 object.2 files changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
0 commit comments