Skip to content

Commit 31d48f9

Browse files
committed
Update vulkan version test
1 parent 560ac97 commit 31d48f9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

libraries/gfx/vulkan/tests/version.tests.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ namespace morpheus::gfx::vulkan {
99

1010
TEST_CASE("Test construction of std::error_code object via make_error_code", "[vulkan.version]")
1111
{
12-
constexpr std::uint8_t expectedVariant = 0;
13-
constexpr std::uint8_t expectedMajor = 1;
14-
constexpr std::uint8_t expectedMinor = 3;
15-
constexpr std::uint8_t expectedPatch = VK_HEADER_VERSION;
12+
constexpr std::uint32_t expectedVariant = 0;
13+
constexpr std::uint32_t expectedMajor = 1;
14+
constexpr std::uint32_t expectedMinor = 3;
15+
constexpr std::uint32_t expectedPatch = VK_HEADER_VERSION;
1616
constexpr Version version(VK_MAKE_API_VERSION(expectedVariant, expectedMajor, expectedMinor, expectedPatch));
1717
STATIC_REQUIRE(version.variant() == expectedVariant);
1818
STATIC_REQUIRE(version.major() == expectedMajor);

0 commit comments

Comments
 (0)