Skip to content

Commit

Permalink
Updated test names to not collide (Issue #1805)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbales2 committed Mar 3, 2021
1 parent 04b5f05 commit 5a022b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/unit/math/mix/fun/fma_3_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <test/unit/math/test_ad.hpp>
#include <limits>

TEST(mathMixScalFun, fma_vector) {
TEST(mathMixScalFun, fma_row_vector) {
auto f = [](const auto& x1, const auto& x2, const auto& x3) {
return stan::math::fma(x1, x2, x3);
};
Expand Down
2 changes: 1 addition & 1 deletion test/unit/math/mix/fun/fma_4_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <test/unit/math/test_ad.hpp>
#include <limits>

TEST(mathMixScalFun, fma_vector) {
TEST(mathMixScalFun, fma_matrix) {
auto f = [](const auto& x1, const auto& x2, const auto& x3) {
return stan::math::fma(x1, x2, x3);
};
Expand Down

0 comments on commit 5a022b3

Please sign in to comment.