Skip to content

Commit

Permalink
Make pep8 happy, remove mixed tabs and spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSzatmary committed Aug 22, 2011
1 parent e046a3d commit 5d67010
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions bake/test/test_mix.py
Expand Up @@ -5,12 +5,13 @@
import os
import mix


class parseBPlinesTestCase(unittest.TestCase):
def test_overwrite(self):
# Test that a later line overwrites a previous line
grid = mix.parseBPlines(['@foo@;bar;baz', '@foo@;rag'])
self.assertEqual(grid.tokens[0], '@foo@')
self.assertEqual(grid.list_values[0][0], 'rag')
# Test that a later line overwrites a previous line
grid = mix.parseBPlines(['@foo@;bar;baz', '@foo@;rag'])
self.assertEqual(grid.tokens[0], '@foo@')
self.assertEqual(grid.list_values[0][0], 'rag')

if __name__ == '__main__':
unittest.main()

0 comments on commit 5d67010

Please sign in to comment.