Fix test failed due to time round
This commit is contained in:
		
							parent
							
								
									05e1af3bfb
								
							
						
					
					
						commit
						d2741ae51e
					
				| @ -86,8 +86,8 @@ func AssertEqual(t *testing.T, got, expect interface{}) { | ||||
| 			if curTime, ok := got.(time.Time); ok { | ||||
| 				format := "2006-01-02T15:04:05Z07:00" | ||||
| 
 | ||||
| 				if curTime.Format(format) != expect.(time.Time).Format(format) { | ||||
| 					t.Errorf("%v: expect: %v, got %v", utils.FileWithLineNum(), expect.(time.Time).Format(format), curTime.Format(format)) | ||||
| 				if curTime.Round(time.Second).Format(format) != expect.(time.Time).Round(time.Second).Format(format) { | ||||
| 					t.Errorf("%v: expect: %v, got %v", utils.FileWithLineNum(), expect.(time.Time).Round(time.Second).Format(format), curTime.Round(time.Second).Format(format)) | ||||
| 				} | ||||
| 			} else if got != expect { | ||||
| 				t.Errorf("%v: expect: %#v, got %#v", utils.FileWithLineNum(), expect, got) | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Jinzhu
						Jinzhu