mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Issue #15601: fix tkinter test_variables failure with OS X Aqua Tk 8.4
This commit is contained in:
		
							parent
							
								
									7dac74a0ca
								
							
						
					
					
						commit
						25a02d403c
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -81,8 +81,8 @@ def test_default(self): | ||||||
|     def test_get(self): |     def test_get(self): | ||||||
|         v = StringVar(self.root, "abc", "name") |         v = StringVar(self.root, "abc", "name") | ||||||
|         self.assertEqual("abc", v.get()) |         self.assertEqual("abc", v.get()) | ||||||
|         self.root.globalsetvar("name", True) |         self.root.globalsetvar("name", "value") | ||||||
|         self.assertEqual("1", v.get()) |         self.assertEqual("value", v.get()) | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| class TestIntVar(TestBase): | class TestIntVar(TestBase): | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andrew Svetlov
						Andrew Svetlov