our strftime doesn't error out with %-d but just outputs -d rather
than doing whatever this test wants

Fixes "dateutil.parser._parser.ParserError: Unknown string format: 2003-Sep--d"

Index: tests/test_parser.py
--- tests/test_parser.py.orig
+++ tests/test_parser.py
@@ -29,6 +29,8 @@ try:
 except ValueError:
     pass
 
+if (datetime.now().strftime('%-d') == '-d'):
+    PLATFORM_HAS_DASH_D = False
 
 @pytest.fixture(params=[True, False])
 def fuzzy(request):
