@@ -167,7 +167,7 @@ def update(self, op_code, cur_count, max_count=None, message=""):
167
167
open (new_file_path , "wb" ).close () # create new file in working tree
168
168
cloned_repo .index .add ([new_file_path ]) # add it to the index
169
169
# Commit the changes to deviate masters history
170
- cloned_repo .index .commit ("Added a new file in the past - for later merege " )
170
+ cloned_repo .index .commit ("Added a new file in the past - for later merge " )
171
171
172
172
# prepare a merge
173
173
master = cloned_repo .heads .master # right-hand side is ahead of us, in the future
@@ -198,7 +198,7 @@ def update(self, op_code, cur_count, max_count=None, message=""):
198
198
199
199
# .gitmodules was written and added to the index, which is now being committed
200
200
cloned_repo .index .commit ("Added submodule" )
201
- assert sm .exists () and sm .module_exists () # this submodule is defintely available
201
+ assert sm .exists () and sm .module_exists () # this submodule is definitely available
202
202
sm .remove (module = True , configuration = False ) # remove the working tree
203
203
assert sm .exists () and not sm .module_exists () # the submodule itself is still available
204
204
@@ -263,9 +263,9 @@ def test_references_and_objects(self, rw_dir):
263
263
# [8-test_references_and_objects]
264
264
hc = repo .head .commit
265
265
hct = hc .tree
266
- hc != hct # noqa: B015 # @NoEffect
267
- hc != repo .tags [0 ] # noqa: B015 # @NoEffect
268
- hc == repo .head .reference .commit # noqa: B015 # @NoEffect
266
+ assert hc != hct
267
+ assert hc != repo .tags [0 ]
268
+ assert hc == repo .head .reference .commit
269
269
# ![8-test_references_and_objects]
270
270
271
271
# [9-test_references_and_objects]
0 commit comments