mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 11:29:48 +08:00
fix variable name
This commit is contained in:
@@ -165,7 +165,7 @@
|
||||
test-id='{{ forloop.counter }}'>
|
||||
<div class='test-heading'>
|
||||
<span class='test-name'>{{ record.name }}</span>
|
||||
<span class='test-time'>{{ record.meta_data.response_time }} ms</span>
|
||||
<span class='test-time'>{{ record.meta_data.response_time_ms }} ms</span>
|
||||
<span class='test-status right pass'>pass</span>
|
||||
</div>
|
||||
{% elif record.status == 'error' %}
|
||||
@@ -173,13 +173,13 @@
|
||||
test-id='{{ forloop.counter }}'>
|
||||
<div class='test-heading'>
|
||||
<span class='test-name'>{{ record.name }}</span>
|
||||
<span class='test-time'>{{ record.meta_data.response_time }} ms</span>
|
||||
<span class='test-time'>{{ record.meta_data.response_time_ms }} ms</span>
|
||||
<span class='test-status right fail'>fail</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class='test-content hide'>
|
||||
<div class='test-time-info'>
|
||||
<span class='label start-time'>{{ record.meta_data.response_time }} ms</span>
|
||||
<span class='label start-time'>{{ record.meta_data.response_time_ms }} ms</span>
|
||||
</div>
|
||||
<div class='test-steps'>
|
||||
<table class='bordered table-results'>
|
||||
|
||||
Reference in New Issue
Block a user