182
161
# commit from here should do nothing
183
162
run_bzr('commit', '.', '-m', 'commit subdir only', '--unchanged')
185
164
eq(v3.get_file_by_path('b/two').read(), 'old contents')
186
165
eq(v3.get_file_by_path('top').read(), 'old contents')
187
166
eq(v3.get_file_by_path('a/one').read(), 'new contents')
189
168
# commit in subdirectory commits whole tree
190
169
run_bzr('commit', '-m', 'commit whole tree from subdir')
192
171
eq(v4.get_file_by_path('b/two').read(), 'new contents')
193
172
eq(v4.get_file_by_path('top').read(), 'new contents')