Skip to content

Commit e189948

Browse files
authored
Update test_pdalc_config.c
1 parent e3028a4 commit e189948

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/pdal/test_pdalc_config.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
#include <assert.h>
3333

3434
#include <pdal/pdalc_config.h>
35-
#include <pdal/gitsha.h>
3635
#include <pdal/pdal_features.hpp>
3736

3837
#include "greatest.h"
@@ -109,8 +108,6 @@ TEST testPDALGetSetProj4DataPath(void)
109108

110109
TEST testPDALVersionInfo(void)
111110
{
112-
int versionInteger = PDALVersionInteger();
113-
ASSERT_EQ(PDAL_VERSION_INTEGER, versionInteger);
114111

115112
int major = PDALVersionMajor();
116113
ASSERT_EQ(PDAL_VERSION_MAJOR, major);
@@ -121,8 +118,6 @@ TEST testPDALVersionInfo(void)
121118
int patch = PDALVersionPatch();
122119
ASSERT_EQ(PDAL_VERSION_PATCH, patch);
123120

124-
ASSERT_EQ(major*10000 + minor*100 + patch, versionInteger);
125-
126121
char expected[64];
127122
sprintf(expected, "%d.%d.%d", major, minor, patch);
128123

0 commit comments

Comments
 (0)