filename from result

pull/571/head
aniket-engg 4 years ago committed by Liana Husikyan
parent 2e267a2cca
commit 12aa333e17
  1. 4
      apps/remix-ide/src/app/tabs/test-tab.js

@ -182,7 +182,7 @@ module.exports = class TestTab extends ViewPlugin {
<div
class="bg-light mb-2 ${css.testFailure} ${css.testLog} d-flex flex-column text-danger border-0"
id="UTContext${result.context}"
onclick=${() => this.highlightLocation(result.location, runningTests, this.rawFileName)}
onclick=${() => this.highlightLocation(result.location, runningTests, result.filename)}
>
<span> ${result.value}</span>
<span class="text-dark">Error Message:</span>
@ -197,7 +197,7 @@ module.exports = class TestTab extends ViewPlugin {
<div
class="bg-light mb-2 ${css.testFailure} ${css.testLog} d-flex flex-column text-danger border-0"
id="UTContext${result.context}"
onclick=${() => this.highlightLocation(result.location, runningTests, this.rawFileName)}
onclick=${() => this.highlightLocation(result.location, runningTests, result.filename)}
>
<span> ${result.value}</span>
<span class="text-dark">Error Message:</span>

Loading…
Cancel
Save