diff options
Diffstat (limited to 'src/animatedsprite_unittest.cc')
-rw-r--r-- | src/animatedsprite_unittest.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/animatedsprite_unittest.cc b/src/animatedsprite_unittest.cc index 3e1695d10..c8c1e7d80 100644 --- a/src/animatedsprite_unittest.cc +++ b/src/animatedsprite_unittest.cc @@ -52,8 +52,7 @@ static void init() TEST(AnimatedSprite, basic) { - Client::Options options; - client = new Client(options); + client = new Client; init(); AnimatedSprite *sprite = AnimatedSprite::load( @@ -77,9 +76,7 @@ TEST(AnimatedSprite, basic) TEST(AnimatedSprite, basic2) { - Client::Options options; - client = new Client(options); - + client = new Client; init(); AnimatedSprite *sprite = AnimatedSprite::load( "graphics/sprites/test.xml", 0); |