requested changes are rectified

This commit is contained in:
avnish98 2019-01-04 16:58:11 +05:30
parent a98028269f
commit 6824a62fc8
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#include <gtest/gtest.h>
#include "zcash/util.h"
TEST(LibzcashUtils, onvertBytesVectorToVector)
TEST(LibzcashUtils, ConvertBytesVectorToVector)
{
std::vector<unsigned char> bytes = {0x00, 0x01, 0x03, 0x12, 0xFF};
std::vector<bool> expected_bits = {

View File

@ -4,7 +4,7 @@ TEST(tautologies, SevenEqSeven) {
ASSERT_EQ(7, 7);
}
TEST(tautologies, DISABLEDObviousFailure)
TEST(tautologies, DISABLED_ObviousFailure)
{
FAIL() << "This is expected";
}