summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/QA/StorageTest/FileReadBytestreamTest.cpp')
-rw-r--r--Swiften/QA/StorageTest/FileReadBytestreamTest.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Swiften/QA/StorageTest/FileReadBytestreamTest.cpp b/Swiften/QA/StorageTest/FileReadBytestreamTest.cpp
index 5b3867c..e601de9 100644
--- a/Swiften/QA/StorageTest/FileReadBytestreamTest.cpp
+++ b/Swiften/QA/StorageTest/FileReadBytestreamTest.cpp
@@ -32,24 +32,24 @@ class FileReadBytestreamTest : public CppUnit::TestFixture {
}
void testRead() {
- boost::shared_ptr<FileReadBytestream> testling(createTestling());
+ std::shared_ptr<FileReadBytestream> testling(createTestling());
- boost::shared_ptr< std::vector<unsigned char> > result = testling->read(10);
+ std::shared_ptr< std::vector<unsigned char> > result = testling->read(10);
CPPUNIT_ASSERT(createByteArray("/*\n * Copy") == *result.get());
}
void testRead_Twice() {
- boost::shared_ptr<FileReadBytestream> testling(createTestling());
+ std::shared_ptr<FileReadBytestream> testling(createTestling());
testling->read(10);
- boost::shared_ptr< std::vector<unsigned char> > result = testling->read(10);
+ std::shared_ptr< std::vector<unsigned char> > result = testling->read(10);
CPPUNIT_ASSERT_EQUAL(std::string("right (c) "), byteArrayToString(*result));
}
void testIsFinished_NotFinished() {
- boost::shared_ptr<FileReadBytestream> testling(createTestling());
+ std::shared_ptr<FileReadBytestream> testling(createTestling());
testling->read(10);
@@ -57,7 +57,7 @@ class FileReadBytestreamTest : public CppUnit::TestFixture {
}
void testIsFinished_IsFinished() {
- boost::shared_ptr<FileReadBytestream> testling(createTestling());
+ std::shared_ptr<FileReadBytestream> testling(createTestling());
testling->read(4096);