Fix unit test name (RankineToCelsius)

Co-authored-by: Tobias Nießen <tniessen@users.noreply.github.com>
This commit is contained in:
Scott Fennell 2021-06-01 13:26:21 -05:00 committed by GitHub
parent c0794733b7
commit a88f38b55c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -501,7 +501,7 @@ TEST_F(UnitConversion, KelvinToRankine)
test_conversion_no_throw("K", "R", 0.0, 1.8, TOL);
}
TEST_F(UnitConversion, RankineToCelcius)
TEST_F(UnitConversion, RankineToCelsius)
{
test_conversion_no_throw("R", "C", -273.15, (5.0/9.0), TOL);
}