fix(tests): Fix TestMigrateActionsArtifacts()
Since we have artifact fixtures now, some ids are in use. To avoid reusing IDs, start them at 42, rather than 0. That's past the ids used by the fixtures. Signed-off-by: Gergely Nagy <forgejo@gergo.csillger.hu>
This commit is contained in:
		
					parent
					
						
							
								ae6292ba38
							
						
					
				
			
			
				commit
				
					
						597f83c735
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -91,7 +91,7 @@ func TestMigrateActionsArtifacts(t *testing.T) {
 | 
			
		|||
 | 
			
		||||
	srcStorage, _ := createLocalStorage(t)
 | 
			
		||||
	defer test.MockVariableValue(&storage.ActionsArtifacts, srcStorage)()
 | 
			
		||||
	id := int64(0)
 | 
			
		||||
	id := int64(42)
 | 
			
		||||
 | 
			
		||||
	addArtifact := func(storagePath string, status actions.ArtifactStatus) {
 | 
			
		||||
		id++
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue