From 09e2cb0ba70aeb52bf6562120103573d7f65cbd6 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Tue, 1 Jun 2004 12:48:19 +0000 Subject: [PATCH] [Bug #962631] Fix typo reported by Bryan Blackburn --- Lib/test/test_sax.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_sax.py b/Lib/test/test_sax.py index 8e279ce5206..8786094a974 100644 --- a/Lib/test/test_sax.py +++ b/Lib/test/test_sax.py @@ -27,7 +27,7 @@ def confirm(outcome, name): tests = tests + 1 if outcome: if verbose: - print "Failed", name + print "Passed", name else: failures.append(name)