gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: fix compile error


From: gnunet
Subject: [libeufin] branch master updated: fix compile error
Date: Sat, 11 Jan 2020 23:19:10 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new b6067b2  fix compile error
b6067b2 is described below

commit b6067b27834d0a8c50e61c8306371f379bcad7c8
Author: Marcello Stanisci <address@hidden>
AuthorDate: Sat Jan 11 23:19:05 2020 +0100

    fix compile error
---
 sandbox/src/test/kotlin/DbTest.kt | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sandbox/src/test/kotlin/DbTest.kt 
b/sandbox/src/test/kotlin/DbTest.kt
index 27d06ab..7f619f5 100644
--- 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"
                     }
                 }
             }

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]