From 1906253b9a95405803a811081375e82fbfc07f7c Mon Sep 17 00:00:00 2001
From: Jameson Graef Rollins <jrollins@finestructure.net>
Date: Sat, 28 Mar 2020 12:06:26 -0700
Subject: [PATCH] fix finding IFOs in test gen-cache

---
 gwinc/test/__main__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gwinc/test/__main__.py b/gwinc/test/__main__.py
index 6ccb7af7..4c02418e 100644
--- a/gwinc/test/__main__.py
+++ b/gwinc/test/__main__.py
@@ -177,7 +177,7 @@ def main():
         except FileExistsError:
             pass
         freq = np.logspace(np.log10(5), np.log10(6000), 3000)
-        for name in available_ifos():
+        for name in IFOS:
             Budget = load_budget(name)
             traces = Budget(freq).run()
             path = os.path.join(args.cache, name+'.h5')
-- 
GitLab