diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-23 22:08:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-24 21:08:16 +0300 |
commit | c97f245c597ebe8f488e72c435960dbee9bf66c6 (patch) | |
tree | 472aa07dfc05d06f8732e5fc24c7960a07d10494 /src/gui | |
parent | c2a7004213529c403faeb6fdcc374699aa2f53b5 (diff) | |
download | plus-c97f245c597ebe8f488e72c435960dbee9bf66c6.tar.gz plus-c97f245c597ebe8f488e72c435960dbee9bf66c6.tar.bz2 plus-c97f245c597ebe8f488e72c435960dbee9bf66c6.tar.xz plus-c97f245c597ebe8f488e72c435960dbee9bf66c6.zip |
fix Client creation in unit tests.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/widgets/browserbox_unittest.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/widgets/browserbox_unittest.cc b/src/gui/widgets/browserbox_unittest.cc index 30ec6d6dd..1c38d735f 100644 --- a/src/gui/widgets/browserbox_unittest.cc +++ b/src/gui/widgets/browserbox_unittest.cc @@ -46,7 +46,7 @@ TEST(browserbox, test1) PHYSFS_init("manaplus"); dirSeparator = "/"; Client::Options options; - Client client(options); + client = new Client(options); logger = new Logger(); imageHelper = new SDLImageHelper(); @@ -148,4 +148,7 @@ TEST(browserbox, test1) box->addRow(row); row = "##1%%2"; box->addRow(row); + + delete client; + client = nullptr; } |