diff options
author | albert-github <albert.tests@gmail.com> | 2021-01-07 18:52:31 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2021-01-07 18:52:31 (GMT) |
commit | 2ac966df7a35d30c09162cc82b62bc3c9e0f74dd (patch) | |
tree | 047e8870566e6ad192ed0b2e712f9c2eb284a4f7 /testing | |
parent | 3f4717ec5583dde8116205e1045095158ab56c15 (diff) | |
download | Doxygen-2ac966df7a35d30c09162cc82b62bc3c9e0f74dd.zip Doxygen-2ac966df7a35d30c09162cc82b62bc3c9e0f74dd.tar.gz Doxygen-2ac966df7a35d30c09162cc82b62bc3c9e0f74dd.tar.bz2 |
Typeerror when running tests
Some tests get (#8313):
```
File "/home/runner/work/doxygen/doxygen/testing/runtests.py", line 55, in clean_header
rtnmsg+=0
TypeError: can only concatenate str (not "int") to str
```
most likely caused by the fact that `more` has error lines and that here not `0` (zero) but `o` should be used for the concatenation.
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/runtests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/runtests.py b/testing/runtests.py index fde252d..f981c55 100755 --- a/testing/runtests.py +++ b/testing/runtests.py @@ -52,7 +52,7 @@ def clean_header(errmsg): if (cnt > 0): cnt-=1 else: - rtnmsg+=0 + rtnmsg+=o return rtnmsg class Tester: |