We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fbea9b commit fa252f6Copy full SHA for fa252f6
1 file changed
_sources/Strings/Exercises.rst
@@ -206,11 +206,11 @@ Exercises
206
207
class myTests(TestCaseGui):
208
209
- def testOne(self):
210
- self.assertEqual(numDigits(2),1,"Tested numDigits on input of 2")
211
- self.assertEqual(numDigits(55),2,"Tested numDigits on input of 55")
212
- self.assertEqual(numDigits(1352),4,"Tested numDigits on input of 1352")
213
- self.assertEqual(numDigits(444),3,"Tested numDigits on input of 444")
+ def testOne(self):
+ self.assertEqual(numDigits(2),1,"Tested numDigits on input of 2")
+ self.assertEqual(numDigits(55),2,"Tested numDigits on input of 55")
+ self.assertEqual(numDigits(1352),4,"Tested numDigits on input of 1352")
+ self.assertEqual(numDigits(444),3,"Tested numDigits on input of 444")
214
215
myTests().main()
216
0 commit comments