File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
src/eiffel_graphql_api/graphql/schemas Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 30
30
from .runtime_environment import RuntimeEnvironment
31
31
from .source_change_base import *
32
32
from .subject import Subject
33
- from .tercc import Tercc
33
+ from .terc import Terc
34
34
from .test_case_execution import *
35
35
from .test_suite_execution import *
36
36
from .verification_basis import VerificationBasis
Original file line number Diff line number Diff line change 13
13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
- """Resolve tercc link."""
16
+ """Resolve terc link."""
17
17
import graphene
18
18
19
19
from eiffel_graphql_api .graphql .schemas .events import (
23
23
from ..utils import find_one
24
24
25
25
26
- class Tercc (graphene .ObjectType ):
27
- """Tercc link."""
26
+ class Terc (graphene .ObjectType ):
27
+ """Terc link."""
28
28
29
29
test_execution_recipe_collection_created = graphene .Field (
30
30
TestExecutionRecipeCollectionCreated
@@ -36,7 +36,7 @@ def __init__(self, link):
36
36
self .link = link
37
37
38
38
def resolve_test_execution_recipe_collection_created (self , _ ):
39
- """Resolve tercc link."""
39
+ """Resolve terc link."""
40
40
from ..union import NotFound # pylint:disable=import-outside-toplevel
41
41
42
42
event = find_one (
Original file line number Diff line number Diff line change 31
31
from .runtime_environment import RuntimeEnvironment
32
32
from .source_change_base import *
33
33
from .subject import Subject
34
- from .tercc import Tercc
34
+ from .terc import Terc
35
35
from .test_case_execution import *
36
36
from .test_suite_execution import *
37
37
from .verification_basis import VerificationBasis
72
72
"CHANGE" : SourceChange ,
73
73
"TEST_CASE_EXECUTION" : TestCaseExecution ,
74
74
"TEST_SUITE_EXECUTION" : TestSuiteExecution ,
75
- "TERCC " : Tercc ,
75
+ "TERC " : Terc ,
76
76
}
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ class Meta: # pylint: disable=too-few-public-methods
192
192
SourceSubmittedPreviousVersion ,
193
193
TestCaseExecution ,
194
194
TestSuiteExecution ,
195
- Tercc ,
195
+ Terc ,
196
196
)
197
197
198
198
You can’t perform that action at this time.
0 commit comments