Skip to content

Commit

Permalink
fix test to adapt to metkit 1.11.10
Browse files Browse the repository at this point in the history
  • Loading branch information
danovaro committed Apr 10, 2024
1 parent 905c036 commit 81da2f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/fdb/type/test_toKey.cc
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ CASE( "Step & ClimateDaily - expansion" ) {

key.set("step", "30m-60m");
// std::cout << key.get("step") << " " << key.canonicalValue("step") << std::endl;
EXPECT(key.canonicalValue("step") == "30m-60m");
EXPECT(key.canonicalValue("step") == "30m-1");

key.set("step", "30m-1");
// std::cout << key.get("step") << " " << key.canonicalValue("step") << std::endl;
EXPECT(key.canonicalValue("step") == "30m-60m");
EXPECT(key.canonicalValue("step") == "30m-1");

key.set("step", "60m-120m");
// std::cout << key.get("step") << " " << key.canonicalValue("step") << std::endl;
Expand Down

0 comments on commit 81da2f0

Please sign in to comment.