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
**Describe your changes**
- Fix the warnings in `CommandBasedTests` while building on macOS 10.15.
```sh
warning: 'scanString(_:into:)' was deprecated in macOS 10.15
guard scanString(string, into: result) else {
^
warning: 'scanUpToCharacters(from:into:)' was deprecated in macOS 10.15
guard scanUpToCharacters(from: characterSet, into: result) else {
^
warning: 'scanUpToCharacters(from:into:)' was deprecated in macOS 10.15
guard scanUpToCharacters(from: characterSet, into: result) else {
^
warning: 'scanUpTo(_:into:)' was deprecated in macOS 10.15
guard scanUpTo(string, into: result) else {
^
warning: 'scanInt32' was deprecated in macOS 10.15
guard scanInt32(result) else {
```
- Removed `scanCharactersOrFail` method as it was not used
**Testing performed**
- Inspect the build output to verify there is no warnings
Signed-off-by: Marcin Iwanicki <[email protected]>
0 commit comments