Changeset 112 for trunk/tests/color.py

Show
Ignore:
Timestamp:
10/28/08 16:28:25 (4 years ago)
Author:
lgs
Message:

Remove whitespace

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/color.py

    r85 r112  
    8787    def test_autoLighting(self): 
    8888        """This test ensures that the colors don't get to white too fast. 
    89          
     89 
    9090        See bug #8. 
    9191        """ 
     
    9595        color = '#ff0000' 
    9696        scheme = pycha.color.generateColorscheme(color, keys) 
    97          
     97 
    9898        # ensure that the last color is not completely white 
    9999        color = scheme[n-1] 
     
    101101        self.assertNotAlmostEqual(color[1], 1.0, 4) 
    102102        self.assertNotAlmostEqual(color[2], 1.0, 4) 
    103          
     103 
    104104def test_suite(): 
    105105    return unittest.TestSuite((