Fixed test_long
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py
index 223ef7c..09adc74 100644
--- a/Lib/test/test_long.py
+++ b/Lib/test/test_long.py
@@ -538,8 +538,8 @@
         self.assertRaises(ValueError, format, 3, "s")
 
     def test_nan_inf(self):
-        self.assertRaises(OverflowError, long, float('inf'))
-        self.assertEqual(long(float('nan')), 0L)
+        self.assertRaises(OverflowError, int, float('inf'))
+        self.assertEqual(int(float('nan')), 0)
 
 def test_main():
     test_support.run_unittest(LongTest)