diff options
| author | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-09-04 15:38:30 -0500 |
|---|---|---|
| committer | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-09-04 15:38:30 -0500 |
| commit | cc7ba659adbc5ad55e1ce67f76952f2b8392c9c9 (patch) | |
| tree | 2df3f62bd4dcda45732b0955f2797596f0ae5743 /cmd/planr/main.go | |
| parent | b3252d2bd488b5b58cf0e46151ff9db0721c5fc6 (diff) | |
| download | deb-planr-cc7ba659adbc5ad55e1ce67f76952f2b8392c9c9.tar.xz deb-planr-cc7ba659adbc5ad55e1ce67f76952f2b8392c9c9.zip | |
Refactor build/eval pipeline to use clearer IO model and adapter segmentation methods
Diffstat (limited to 'cmd/planr/main.go')
| -rw-r--r-- | cmd/planr/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/planr/main.go b/cmd/planr/main.go index b2a0975..4ff57eb 100644 --- a/cmd/planr/main.go +++ b/cmd/planr/main.go @@ -29,7 +29,7 @@ func dieUsage() { func getConfiguredRunner() planr.Runner { r := planr.ConfigureRunner() - r = planr.RegisterAdapter(r, gtest.New()) + r = planr.RegisterAdapter(r, gtest.NewAdapter()) if wd, err := os.Getwd(); err == nil { r = planr.SetConfigDirFromTree(r, wd) |
