Fix decimal repr which should have used single quotes like other reprs.
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py
index 3b15df7..e5f7f64 100644
--- a/Lib/test/test_decimal.py
+++ b/Lib/test/test_decimal.py
@@ -1049,7 +1049,7 @@
 
         d = Decimal('15.32')
         self.assertEqual(str(d), '15.32')               # str
-        self.assertEqual(repr(d), 'Decimal("15.32")')   # repr
+        self.assertEqual(repr(d), "Decimal('15.32')")   # repr
 
     def test_tonum_methods(self):
         #Test float, int and long methods.