diff options
| author | Jani Nikula <jani@nikula.org> | 2017-02-26 15:42:53 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-03-09 08:53:12 -0400 |
| commit | 1db3244bf1b271633976cb74952367e530d27d3d (patch) | |
| tree | d89ff125028e9320f8e34a8c32fb68f7618a0ba7 | |
| parent | 14c0862baca77882f74fecdafbacb717bccdcfbb (diff) | |
test: remove unused regexp convenience variables
They've been unused since their introduction in commit 0083854b1204
("Copy test framework from Git").
| -rw-r--r-- | test/test-lib.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/test-lib.sh b/test/test-lib.sh index 98203b9b..e4729a61 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -93,15 +93,6 @@ unset GREP_OPTIONS # For emacsclient unset ALTERNATE_EDITOR -# Convenience -# -# A regexp to match 5 and 40 hexdigits -_x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' -_x40="$_x05$_x05$_x05$_x05$_x05$_x05$_x05$_x05" - -_x04='[0-9a-f][0-9a-f][0-9a-f][0-9a-f]' -_x32="$_x04$_x04$_x04$_x04$_x04$_x04$_x04$_x04" - # Each test should start with something like this, after copyright notices: # # test_description='Description of this test... |
