diff options
Diffstat (limited to 'Swiften/Disco/UnitTest/CapsManagerTest.cpp')
| -rw-r--r-- | Swiften/Disco/UnitTest/CapsManagerTest.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/Swiften/Disco/UnitTest/CapsManagerTest.cpp b/Swiften/Disco/UnitTest/CapsManagerTest.cpp index 0681569..ca55c48 100644 --- a/Swiften/Disco/UnitTest/CapsManagerTest.cpp +++ b/Swiften/Disco/UnitTest/CapsManagerTest.cpp @@ -45,16 +45,16 @@ class CapsManagerTest : public CppUnit::TestFixture {  			iqRouter = new IQRouter(stanzaChannel);  			storage = new CapsMemoryStorage();  			user1 = JID("user1@bar.com/bla"); -			discoInfo1 = boost::shared_ptr<DiscoInfo>(new DiscoInfo()); +			discoInfo1 = boost::make_shared<DiscoInfo>();  			discoInfo1->addFeature("http://swift.im/feature1"); -			capsInfo1 = boost::shared_ptr<CapsInfo>(new CapsInfo(CapsInfoGenerator("http://node1.im").generateCapsInfo(*discoInfo1.get()))); -			capsInfo1alt = boost::shared_ptr<CapsInfo>(new CapsInfo(CapsInfoGenerator("http://node2.im").generateCapsInfo(*discoInfo1.get()))); +			capsInfo1 = boost::make_shared<CapsInfo>(CapsInfoGenerator("http://node1.im").generateCapsInfo(*discoInfo1.get())); +			capsInfo1alt = boost::make_shared<CapsInfo>(CapsInfoGenerator("http://node2.im").generateCapsInfo(*discoInfo1.get()));  			user2 = JID("user2@foo.com/baz"); -			discoInfo2 = boost::shared_ptr<DiscoInfo>(new DiscoInfo()); +			discoInfo2 = boost::make_shared<DiscoInfo>();  			discoInfo2->addFeature("http://swift.im/feature2"); -			capsInfo2 = boost::shared_ptr<CapsInfo>(new CapsInfo(CapsInfoGenerator("http://node2.im").generateCapsInfo(*discoInfo2.get()))); +			capsInfo2 = boost::make_shared<CapsInfo>(CapsInfoGenerator("http://node2.im").generateCapsInfo(*discoInfo2.get()));  			user3 = JID("user3@foo.com/baz"); -			legacyCapsInfo = boost::shared_ptr<CapsInfo>(new CapsInfo("http://swift.im", "ver1", "")); +			legacyCapsInfo = boost::make_shared<CapsInfo>("http://swift.im", "ver1", "");  		}  		void tearDown() {  | 
 Swift