diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 09:53:21 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 09:53:21 -0400 |
commit | 30c9945e0da19305ebad88a2835653ff4f409313 (patch) | |
tree | ced29d303c851da336f63a863ca2c85b3fa93d84 /include/junitxml.h | |
parent | 0ee6d47e23e3e99e9ca732babffb56be3cb9c8ae (diff) | |
download | ohmycal-30c9945e0da19305ebad88a2835653ff4f409313.tar.gz |
Documentation update
Diffstat (limited to 'include/junitxml.h')
-rw-r--r-- | include/junitxml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/junitxml.h b/include/junitxml.h index 290ce6f..2d94eb8 100644 --- a/include/junitxml.h +++ b/include/junitxml.h @@ -102,7 +102,7 @@ struct JUNIT_Testsuite { * // JUNIT_RESULT_STATE_FAILURE * // JUNIT_RESULT_STATE_ERROR * // JUNIT_RESULT_STATE_SKIPPED - * struct JUNIT_Testcase testcase = testsuite->testcase[i]; + * struct JUNIT_Testcase *testcase = testsuite->testcase[i]; * if (testcase->tc_result_state_type) { * if (testcase->tc_result_state_type == JUNIT_RESULT_STATE_FAILURE) { * // Display information from failed test case |