We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 03cc05b + bea4b20 commit 32ea6c0Copy full SHA for 32ea6c0
robotframework_reportportal/model.py
@@ -57,7 +57,7 @@ def get_name(self):
57
assignment = "{0} = ".format(", ".join(self.assign)) if self.assign else ""
58
arguments = ", ".join(self.args)
59
full_name = "{0}{1} ({2})".format(assignment, self.name, arguments)
60
- return full_name
+ return full_name[:256]
61
62
def get_type(self):
63
if self.keyword_type == "Setup":
0 commit comments