Remove test from formatting

This commit is contained in:
Konstantinos Sideris 2017-10-01 18:20:53 +03:00
parent 6e0ae807d5
commit cc8470368e
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ set -o errexit
set -o pipefail
set -o nounset
FILES=`find include src tests -type f -type f \( -iname "*.cc" -o -iname "*.h" \)`
FILES=`find include src -type f -type f \( -iname "*.cc" -o -iname "*.h" \)`
clang-format -i $FILES && git diff --exit-code