Skip to content

Commit 03099b4

Browse files
committed
Fix type
1 parent c003c56 commit 03099b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/kotlin/org/evomaster/core/solver/SmtLibGenerator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ class SmtLibGenerator(private val schema: DbInfoDto, private val numberOfRows: I
249249
* @param tableName The name of the table.
250250
* @return A list of SMT nodes representing distinct assertions.
251251
*/
252-
private fun assertForDistinctField(pkSelector: String, t st: String): List<SMTNode> {
252+
private fun assertForDistinctField(pkSelector: String, tableName: String): List<SMTNode> {
253253
val nodes = mutableListOf<AssertSMTNode>()
254254
for (i in 1..numberOfRows) {
255255
for (j in i + 1..numberOfRows) {

0 commit comments

Comments
 (0)