gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin] branch master updated: avoid hard-coded value


From: gnunet
Subject: [libeufin] branch master updated: avoid hard-coded value
Date: Mon, 16 Nov 2020 15:47:56 +0100

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

ms pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new bee3112  avoid hard-coded value
bee3112 is described below

commit bee3112eef720738a2ba1146b1c0bc54629b00ad
Author: MS <ms@taler.net>
AuthorDate: Mon Nov 16 15:47:51 2020 +0100

    avoid hard-coded value
---
 integration-tests/tests.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/integration-tests/tests.py b/integration-tests/tests.py
index 8979723..635abc9 100755
--- a/integration-tests/tests.py
+++ b/integration-tests/tests.py
@@ -102,7 +102,7 @@ def prepareNexus():
     # synchronizing the connection
     assertResponse(
         post(
-            f"{N}/bank-connections/my-ebics/connect",
+            f"{N}/bank-connections/{NEXUS_BANK_CONNECTION}/connect",
             json=dict(),
             auth=NEXUS_AUTH
         )
@@ -110,7 +110,7 @@ def prepareNexus():
     # download offered bank accounts
     assertResponse(
         post(
-            f"{N}/bank-connections/my-ebics/fetch-accounts",
+            f"{N}/bank-connections/{NEXUS_BANK_CONNECTION}/fetch-accounts",
             json=dict(),
             auth=NEXUS_AUTH
         )
@@ -118,7 +118,7 @@ def prepareNexus():
     # import one bank account into the Nexus
     assertResponse(
         post(
-            f"{N}/bank-connections/my-ebics/import-account",
+            f"{N}/bank-connections/{NEXUS_BANK_CONNECTION}/import-account",
             json=dict(
                 offeredAccountId=BANK_LABEL,
                 nexusBankAccountId=NEXUS_BANK_LABEL
@@ -142,7 +142,7 @@ def teardown_function():
 def test_imported_account():
     resp = assertResponse(
         get(
-            f"{N}/bank-connections/my-ebics/accounts",
+            f"{N}/bank-connections{NEXUS_BANK_CONNECTION}accounts",
             auth=NEXUS_AUTH
         )
     )

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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