From 906011f2783931a4209905fffa023b7a315f7bf2 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Fri, 4 Sep 2020 09:22:39 +0200 Subject: [PATCH] itest: add _test file name suffix to tests To fix the compiler of some IDEs complaining about types and functions it cannot find, we rename all files that contain tests back to lnd_xxx_test.go to make sure they are compiled correctly. --- lntest/itest/{macaroons.go => lnd_macaroons_test.go} | 0 ...ror-propagation.go => lnd_multi-hop-error-propagation_test.go} | 0 .../{lnd_multi-hop-payments.go => lnd_multi-hop-payments_test.go} | 0 lntest/itest/{onchain.go => lnd_onchain_test.go} | 0 lntest/itest/{psbt.go => lnd_psbt_test.go} | 0 lntest/itest/{rest_api.go => lnd_rest_api_test.go} | 0 ..._multi_path_payment.go => lnd_send_multi_path_payment_test.go} | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename lntest/itest/{macaroons.go => lnd_macaroons_test.go} (100%) rename lntest/itest/{lnd_multi-hop-error-propagation.go => lnd_multi-hop-error-propagation_test.go} (100%) rename lntest/itest/{lnd_multi-hop-payments.go => lnd_multi-hop-payments_test.go} (100%) rename lntest/itest/{onchain.go => lnd_onchain_test.go} (100%) rename lntest/itest/{psbt.go => lnd_psbt_test.go} (100%) rename lntest/itest/{rest_api.go => lnd_rest_api_test.go} (100%) rename lntest/itest/{lnd_send_multi_path_payment.go => lnd_send_multi_path_payment_test.go} (100%) diff --git a/lntest/itest/macaroons.go b/lntest/itest/lnd_macaroons_test.go similarity index 100% rename from lntest/itest/macaroons.go rename to lntest/itest/lnd_macaroons_test.go diff --git a/lntest/itest/lnd_multi-hop-error-propagation.go b/lntest/itest/lnd_multi-hop-error-propagation_test.go similarity index 100% rename from lntest/itest/lnd_multi-hop-error-propagation.go rename to lntest/itest/lnd_multi-hop-error-propagation_test.go diff --git a/lntest/itest/lnd_multi-hop-payments.go b/lntest/itest/lnd_multi-hop-payments_test.go similarity index 100% rename from lntest/itest/lnd_multi-hop-payments.go rename to lntest/itest/lnd_multi-hop-payments_test.go diff --git a/lntest/itest/onchain.go b/lntest/itest/lnd_onchain_test.go similarity index 100% rename from lntest/itest/onchain.go rename to lntest/itest/lnd_onchain_test.go diff --git a/lntest/itest/psbt.go b/lntest/itest/lnd_psbt_test.go similarity index 100% rename from lntest/itest/psbt.go rename to lntest/itest/lnd_psbt_test.go diff --git a/lntest/itest/rest_api.go b/lntest/itest/lnd_rest_api_test.go similarity index 100% rename from lntest/itest/rest_api.go rename to lntest/itest/lnd_rest_api_test.go diff --git a/lntest/itest/lnd_send_multi_path_payment.go b/lntest/itest/lnd_send_multi_path_payment_test.go similarity index 100% rename from lntest/itest/lnd_send_multi_path_payment.go rename to lntest/itest/lnd_send_multi_path_payment_test.go