@@ -387,7 +387,7 @@ def test_environment_successful_build(self):
387
387
388
388
# api() is not called anymore, we use api_v2 instead
389
389
self .assertFalse (self .mocks .api ()(DUMMY_BUILD_ID ).put .called )
390
- # No command were executed
390
+ # No commands were executed
391
391
self .assertFalse (self .mocks .mocks ['api_v2.command' ].post .called )
392
392
self .mocks .mocks ['api_v2.build' ]().put .assert_called_with ({
393
393
'id' : DUMMY_BUILD_ID ,
@@ -419,7 +419,7 @@ def test_environment_successful_build_without_update(self):
419
419
420
420
# api() is not called anymore, we use api_v2 instead
421
421
self .assertFalse (self .mocks .api ()(DUMMY_BUILD_ID ).put .called )
422
- # No command were executed
422
+ # No commands were executed
423
423
self .assertFalse (self .mocks .mocks ['api_v2.command' ].post .called )
424
424
self .assertFalse (self .mocks .mocks ['api_v2.build' ]().put .called )
425
425
@@ -473,7 +473,7 @@ def _inner():
473
473
474
474
# api() is not called anymore, we use api_v2 instead
475
475
self .assertFalse (self .mocks .api ()(DUMMY_BUILD_ID ).put .called )
476
- # The command was not saved
476
+ # No commands were executed
477
477
self .assertFalse (self .mocks .mocks ['api_v2.command' ].post .called )
478
478
self .mocks .mocks ['api_v2.build' ]().put .assert_called_with ({
479
479
'id' : DUMMY_BUILD_ID ,
@@ -603,7 +603,7 @@ def test_api_failure_on_error_in_exit(self):
603
603
604
604
# api() is not called anymore, we use api_v2 instead
605
605
self .assertFalse (self .mocks .api ()(DUMMY_BUILD_ID ).put .called )
606
- # No command were executed
606
+ # No commands were executed
607
607
self .assertFalse (self .mocks .mocks ['api_v2.command' ].post .called )
608
608
self .mocks .mocks ['api_v2.build' ]().put .assert_called_with ({
609
609
'id' : DUMMY_BUILD_ID ,
0 commit comments