mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #26104 -- Fixed TypeError when passing number to forms.DurationField.
This commit is contained in:
		
				
					committed by
					
						 Tim Graham
						Tim Graham
					
				
			
			
				
	
			
			
			
						parent
						
							95648eb5c1
						
					
				
				
					commit
					956cde8004
				
			| @@ -488,7 +488,7 @@ class DurationField(Field): | ||||
|             return None | ||||
|         if isinstance(value, datetime.timedelta): | ||||
|             return value | ||||
|         value = parse_duration(value) | ||||
|         value = parse_duration(force_str(value)) | ||||
|         if value is None: | ||||
|             raise ValidationError(self.error_messages['invalid'], code='invalid') | ||||
|         return value | ||||
|   | ||||
| @@ -722,6 +722,10 @@ class FieldsTests(SimpleTestCase): | ||||
|             str(f['duration']) | ||||
|         ) | ||||
|  | ||||
|     def test_durationfield_integer_value(self): | ||||
|         f = DurationField() | ||||
|         self.assertEqual(datetime.timedelta(0, 10800), f.clean(10800)) | ||||
|  | ||||
|     def test_durationfield_prepare_value(self): | ||||
|         field = DurationField() | ||||
|         td = datetime.timedelta(minutes=15, seconds=30) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user