~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_config.py

(gz) Fix bt.test_osutils and bt.test_config windows fallout from recent
 changes (Martin Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3017
3017
        stack = config.Stack([store.get_sections], store)
3018
3018
        stack.set('foo', ' a b c ')
3019
3019
        store.save()
3020
 
        self.assertFileEqual('foo = " a b c "\n', 'foo.conf')
 
3020
        self.assertFileEqual('foo = " a b c "' + os.linesep, 'foo.conf')
3021
3021
 
3022
3022
 
3023
3023
class TestTransportIniFileStore(TestStore):