Merge pull request #136 from antichris/gocomplete-let-tests-fail
gocomplete: do not suppress test failures
This commit is contained in:
commit
002575c9d5
|
@ -43,7 +43,8 @@ func TestPredictions(t *testing.T) {
|
|||
func BenchmarkFake(b *testing.B) {}
|
||||
|
||||
func Example() {
|
||||
monkey.Patch(os.Exit, func(int) {})
|
||||
p := monkey.Patch(os.Exit, func(int) {})
|
||||
defer p.Unpatch()
|
||||
os.Setenv("COMP_LINE", "go ru")
|
||||
os.Setenv("COMP_POINT", "5")
|
||||
main()
|
||||
|
|
Loading…
Reference in New Issue