tests: avoid deprecated boost headers
Change-Id: Ifac2a9e69bb7dd679e3540dd0911a15cea90af30
diff --git a/tests/wscript b/tests/wscript
index 6f3ddb3..6249874 100644
--- a/tests/wscript
+++ b/tests/wscript
@@ -1,7 +1,5 @@
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
-from waflib import Utils, Context
-
top = '..'
def build(bld):
@@ -12,7 +10,7 @@
config_path = 'TEST_CONFIG_PATH="%s"' % tmp_folder
tmp_folder.make_node('anchors').mkdir()
- bld(features="subst",
+ bld(features='subst',
name='test-validator-conf',
source='../validator.conf.sample.in',
target=tmp_folder.make_node('validator.conf'),
@@ -21,7 +19,6 @@
bld.objects(
target='unit-tests-main',
source='main.cpp',
- defines=['BOOST_TEST_MODULE=NDNS Unit Tests', config_path],
use='ndns-objects')
bld.program(