diff options
| author | elijah <elijah@riseup.net> | 2017-11-27 10:52:45 -0800 | 
|---|---|---|
| committer | elijah <elijah@riseup.net> | 2017-11-27 10:52:45 -0800 | 
| commit | 88a95ce8d6a3a151c20cbfa0ddfff7ca75f78751 (patch) | |
| tree | 90003bc3ac853f69d7b565ef91deae4488c17975 | |
| parent | 2d58cae32e87f94a1294265da547892fe21fe7a6 (diff) | |
fix tests - webapp test should only depend on soledad if soledad service is present
| -rw-r--r-- | tests/server-tests/white-box/webapp.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server-tests/white-box/webapp.rb b/tests/server-tests/white-box/webapp.rb index b0285e2e..42adf219 100644 --- a/tests/server-tests/white-box/webapp.rb +++ b/tests/server-tests/white-box/webapp.rb @@ -4,7 +4,7 @@ require 'json'  class Webapp < LeapTest    depends_on "Network" -  depends_on "Soledad" +  depends_on "Soledad" if service?(:soledad)    def setup    end  | 
