You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Without TestUp `puts [1,2,3]` outputs as:
```
1
2
3
```
Withy TestUp it outputs as `[1, 2, 3]'.
This fix restores the default Ruby behavior to puts for Arrays.
Without TestUp `puts [1,2,3]` outputs as:
```
1
2
3
```
Without TestUp it outputs as `[1, 2, 3]`.
This fix restores the default Ruby behavior to puts for Arrays.
The following code in main will change the console output of Arrays when loaded:
testup-2/src/testup/console.rb
Lines 53 to 66 in e32a68c
Without it loaded,
puts [1,2,3]
shows the following in the console:With it loaded,
Array#to_s
is used, so it outputs:The text was updated successfully, but these errors were encountered: