From: Zooko O'Whielacronx Date: Thu, 1 Feb 2007 17:28:46 +0000 (-0700) Subject: pyfec: fix typo in unit test X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~282 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=ca4fce82e92bf6bdada094790157a000e72d3dd8;p=tahoe-lafs%2Ftahoe-lafs.git pyfec: fix typo in unit test --- diff --git a/pyfec/fec/test/test_pyfec.py b/pyfec/fec/test/test_pyfec.py index fc5f8fd1..8e843570 100644 --- a/pyfec/fec/test/test_pyfec.py +++ b/pyfec/fec/test/test_pyfec.py @@ -98,6 +98,6 @@ def test_random(): # sys.stdout.write(".") print "%d randomized tests pass." % (i+1) -if __name__ == "__init__": +if __name__ == "__main__": test_random()