commit b6067b27834d0a8c50e61c8306371f379bcad7c8
parent f8a7868d8d436daf9ad505e9ee3830d7cdc53e57
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Sat, 11 Jan 2020 23:19:05 +0100
fix compile error
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/sandbox/src/test/kotlin/DbTest.kt b/sandbox/src/test/kotlin/DbTest.kt
@@ -41,7 +41,7 @@ class DbTest {
fun customers() {
transaction {
BankCustomerEntity.new {
- name = "Test Name"
+ customerName = "Test Name"
}
findCustomer("1")
}
@@ -58,7 +58,7 @@ class DbTest {
subject = "Salary"
date = DateTime.now()
localCustomer = BankCustomerEntity.new {
- name = "employee"
+ customerName = "employee"
}
}
@@ -68,7 +68,7 @@ class DbTest {
subject = "Salary"
date = DateTime.now()
localCustomer = BankCustomerEntity.new {
- name = "employee"
+ customerName = "employee"
}
}
@@ -78,7 +78,7 @@ class DbTest {
subject = "Salary"
date = DateTime.now()
localCustomer = BankCustomerEntity.new {
- name = "employee"
+ customerName = "employee"
}
}
}
@@ -94,7 +94,7 @@ class DbTest {
subject = "Salary"
date = DateTime.now()
localCustomer = BankCustomerEntity.new {
- name = "employee"
+ customerName = "employee"
}
}
}
@@ -116,7 +116,7 @@ class DbTest {
subject = "Salary"
date = DateTime.now()
localCustomer = BankCustomerEntity.new {
- name = "employee"
+ customerName = "employee"
}
}
}