Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'workhorse/_support/detect-assert.sh')
-rwxr-xr-xworkhorse/_support/detect-assert.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/workhorse/_support/detect-assert.sh b/workhorse/_support/detect-assert.sh
deleted file mode 100755
index 351cef763b5..00000000000
--- a/workhorse/_support/detect-assert.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-git grep 'testify/assert"' | \
- grep -e '^[^:]*\.go' | \
- awk '{
- print "error: please use testify/require instead of testify/assert"
- print
- exit 1
-}'