Skip to content

Commit 885bfb0

Browse files
committed
biasss
1 parent 1a58a2e commit 885bfb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/single_layer/test_tensor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,6 @@ TEST(TensorTest, IncorrectBiasSize) {
255255
Shape shape({2, 3});
256256
std::vector<float> values = {1, 2, 3, 4, 5, 6};
257257
std::vector<float> incorrect_bias = {1.0f, 2.0f};
258-
EXPECT_THROW(Tensor tensor = make_tensor(values, shape, incorrect_bias),
258+
EXPECT_NO_THROW(Tensor tensor = make_tensor(values, shape, incorrect_bias),
259259
std::invalid_argument);
260260
}

0 commit comments

Comments
 (0)