aboutsummaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/archive.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/archive.cpp b/src/tests/archive.cpp
index 5b7e285..2035aa6 100644
--- a/src/tests/archive.cpp
+++ b/src/tests/archive.cpp
@@ -1,11 +1,11 @@
1#include "archive.h" 1#include "archive.h"
2#include "sfile.h" 2#include "file.h"
3 3
4using namespace Bu; 4using namespace Bu;
5 5
6int main() 6int main()
7{ 7{
8 SFile f("test.dat", "wb"); 8 File f("test.dat", "wb");
9 Archive ar( f, Archive::save ); 9 Archive ar( f, Archive::save );
10 10
11 std::string s("Hello there"); 11 std::string s("Hello there");