Changed double to single quotes
authorMike Jackson <michaelj@epcc.ed.ac.uk>
Tue, 2 Apr 2013 16:50:03 +0000 (09:50 -0700)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 04:21:54 +0000 (21:21 -0700)
testing/Writing.md

index d5708001b63f6115e93e2ad1aa561c7a4f684aac..b9f56146b9ace26b5c789bd7680bcd7e16dbbae4 100755 (executable)
@@ -48,7 +48,7 @@ This is a *runtime test*. It alerts the user to exceptional behavior in the code
 Often, we want to pass such errors to other points in our program rather than just print a message and continue. So, for example we could do,
 
     except TypeError:
-        raise ValueError("The input is not a sequence e.g. a string or list")
+        raise ValueError('The input is not a sequence e.g. a string or list')
 
 which raises a new exception, with a more meaningful message. If writing a complex application, our user interface could then present this to the user e.g. as a dialog box.
 
@@ -180,6 +180,6 @@ One other test we could do is `calculate_weight('GATCX')` for which we can add a
 
         ...
     except KeyError:
-        raise ValueError("The input is not a sequence of G,T,C,A")
+        raise ValueError('The input is not a sequence of G,T,C,A')
 
 Previous: [Testing](README.md) Next: [Testing in practice](RealWorld.md)