mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Replace assert.Fail with assert.FailNow (#27578)
assert.Fail() will continue to execute the code while assert.FailNow() not. I thought those uses of assert.Fail() should exit immediately. PS: perhaps it's a good idea to use [require](https://pkg.go.dev/github.com/stretchr/testify/require) somewhere because the assert package's default behavior does not exit when an error occurs, which makes it difficult to find the root error reason.
This commit is contained in:
		@@ -96,11 +96,10 @@ func TestBleveIndexAndSearch(t *testing.T) {
 | 
			
		||||
	idx := bleve.NewIndexer(dir)
 | 
			
		||||
	_, err := idx.Init(context.Background())
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		assert.Fail(t, "Unable to create bleve indexer Error: %v", err)
 | 
			
		||||
		if idx != nil {
 | 
			
		||||
			idx.Close()
 | 
			
		||||
		}
 | 
			
		||||
		return
 | 
			
		||||
		assert.FailNow(t, "Unable to create bleve indexer Error: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
	defer idx.Close()
 | 
			
		||||
 | 
			
		||||
@@ -118,11 +117,10 @@ func TestESIndexAndSearch(t *testing.T) {
 | 
			
		||||
 | 
			
		||||
	indexer := elasticsearch.NewIndexer(u, "gitea_codes")
 | 
			
		||||
	if _, err := indexer.Init(context.Background()); err != nil {
 | 
			
		||||
		assert.Fail(t, "Unable to init ES indexer Error: %v", err)
 | 
			
		||||
		if indexer != nil {
 | 
			
		||||
			indexer.Close()
 | 
			
		||||
		}
 | 
			
		||||
		return
 | 
			
		||||
		assert.FailNow(t, "Unable to init ES indexer Error: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	defer indexer.Close()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user