Issue #19085: Fixed pixels rounding for last Tk patchlevels.
diff --git a/Lib/lib-tk/test/widget_tests.py b/Lib/lib-tk/test/widget_tests.py
index a4fafff..7402d91 100644
--- a/Lib/lib-tk/test/widget_tests.py
+++ b/Lib/lib-tk/test/widget_tests.py
@@ -14,7 +14,7 @@
 _sentinel = object()
 
 class AbstractWidgetTest(object):
-    _conv_pixels = staticmethod(int_round if tcl_version[:2] != (8, 5) else int)
+    _conv_pixels = staticmethod(int_round)
     _conv_pad_pixels = None
     wantobjects = True