Skip to content

Commit

Permalink
fixed type for NumericFeature Constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Kallistos committed Apr 23, 2024
1 parent 864ff02 commit 7f91023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittests/Feature/NumericFeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ TEST(NumericFeature, NumericFeaturePair) {
}

TEST(NumericFeature, NumericFeatureVector) {
NumericFeature A("A", std::vector<long>{0, 1, 2, 3});
NumericFeature A("A", std::vector<int64_t>{0, 1, 2, 3});

ASSERT_TRUE(
std::holds_alternative<NumericFeature::ValueListType>(A.getValues()));
Expand Down

0 comments on commit 7f91023

Please sign in to comment.