mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-07 12:00:05 -05:00
Fix compilation error in unit test
This commit is contained in:
@@ -139,11 +139,11 @@ TEST_F(DocumentationTest, InitializerConstructor) {
|
||||
{"NotInListString", new StringNotInListVerifier({ "", "a" })},
|
||||
|
||||
// Range Verifiers
|
||||
{"InRangeDouble", new DoubleInRangeVerifier{{0.0, 1.0}},
|
||||
{"InRangeInt", new IntInRangeVerifier{{0, 1}},
|
||||
{"InRangeDouble", new DoubleInRangeVerifier(0.0, 1.0)},
|
||||
{"InRangeInt", new IntInRangeVerifier(0, 1)},
|
||||
|
||||
{"InRangeDouble", new DoubleNotInRangeVerifier{{ 0.0, 1.0 }},
|
||||
{"InRangeInt", new IntNotInRangeVerifier{{ 0, 1 }},
|
||||
{"InRangeDouble", new DoubleNotInRangeVerifier(0.0, 1.0)},
|
||||
{"InRangeInt", new IntNotInRangeVerifier(0, 1)},
|
||||
|
||||
// Misc Verifiers
|
||||
{"AnnotationBool", new BoolAnnotationVerifier("Bool")},
|
||||
|
||||
Reference in New Issue
Block a user