diff options
| author | Sidharth Kshatriya <sid.kshatriya@gmail.com> | 2021-12-14 16:49:39 +0530 |
|---|---|---|
| committer | Sidharth Kshatriya <sid.kshatriya@gmail.com> | 2021-12-14 16:54:50 +0530 |
| commit | e013385a582260bc8aa4ae8f736c18f60d43ce85 (patch) | |
| tree | 68b53f8723b357b2352ed39e188bd3782eb5c36a /test/compose | |
| parent | 4d3a057a0381431f4018562ee053163060839c9a (diff) | |
The `enabled` check was actually was not being run by the test infrastructure.
Now that it is, we get the following error when trying to execute
`test/compose/select-display-columns`
```sh
./enabled: 2: [: 4: unexpected operator
```
This commit fixes the enabled check
Diffstat (limited to 'test/compose')
| -rwxr-xr-x | test/compose/select-display-columns/enabled | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compose/select-display-columns/enabled b/test/compose/select-display-columns/enabled index 704f6e2a..da258b4e 100755 --- a/test/compose/select-display-columns/enabled +++ b/test/compose/select-display-columns/enabled @@ -1,2 +1,2 @@ #!/bin/sh -[ $(echo -n "😄😊😉😍" | wc -m) == 4 ] && locale | grep LC_CTYPE | grep -qi 'utf-*8' +[ $(echo -n "😄😊😉😍" | wc -m) = '4' ] && locale | grep LC_CTYPE | grep -qi 'utf-*8' |
