lint

This commit is contained in:
Abby Mitchell 2022-07-15 16:00:09 -04:00
parent 2c008d24a2
commit 3fc801a8bb
2 changed files with 9 additions and 9 deletions

View File

@ -60,9 +60,9 @@ export default class TestTable extends Vue {
@Prop({ type: Array, default: () => [['', '', '']] }) filteredData!: Object[]
testTypeTooltip = {
'development': 'This test type indicates the ecosystem tests were run for this package using the latest development version of Qiskit',
'stable': 'This test type indicates the ecosystem tests were run for this package using the latest stable version of Qiskit',
'standard': 'This test type means the ecosystem tests were run for this package using the Qiskit version specified in the package requirements',
development: 'This test type indicates the ecosystem tests were run for this package using the latest development version of Qiskit',
stable: 'This test type indicates the ecosystem tests were run for this package using the latest stable version of Qiskit',
standard: 'This test type means the ecosystem tests were run for this package using the Qiskit version specified in the package requirements',
'last passing version': 'This test type means the results in this row show the latest version of Qiskit for which the ecosystem tests pass for this package'
}

View File

@ -149,12 +149,12 @@ import { GeneralLink } from '~/constants/appLinks'
}
return {
packageName,
packageVersion: res.packageVersion,
testType: res.testType,
passed: res.passed,
timestamp,
logsLink: res.logsLink
packageName,
packageVersion: res.packageVersion,
testType: res.testType,
passed: res.passed,
timestamp,
logsLink: res.logsLink
}
})
}