From fabcc079c51e1048f867301087e8fc495d983b94 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Sat, 14 Nov 2020 10:58:01 -0500 Subject: [PATCH] we're not testing the yaml library --- src/allmydata/test/test_multi_introducers.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/allmydata/test/test_multi_introducers.py b/src/allmydata/test/test_multi_introducers.py index 34e6e5d96..2d057e604 100644 --- a/src/allmydata/test/test_multi_introducers.py +++ b/src/allmydata/test/test_multi_introducers.py @@ -52,18 +52,6 @@ class MultiIntroTests(unittest.TestCase): # assertions self.failUnlessEqual(ic_count, 3) - @defer.inlineCallbacks - def test_introducer_count_commented(self): - """ Ensure that the Client creates same number of introducer clients - as found in "basedir/private/introducers" config file when there is one - commented.""" - self.yaml_path.setContent(INTRODUCERS_CFG_FURLS_COMMENTED) - # get a client and count of introducer_clients - myclient = yield create_client(self.basedir) - ic_count = len(myclient.introducer_clients) - - # assertions - self.failUnlessEqual(ic_count, 2) @defer.inlineCallbacks def test_read_introducer_furl_from_tahoecfg(self):