aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/billowitch/compliant/tc2369.vhd
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/vests/vhdl-93/billowitch/compliant/tc2369.vhd')
-rw-r--r--testsuite/vests/vhdl-93/billowitch/compliant/tc2369.vhd4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/vests/vhdl-93/billowitch/compliant/tc2369.vhd b/testsuite/vests/vhdl-93/billowitch/compliant/tc2369.vhd
index 6bcc22a86..029a09595 100644
--- a/testsuite/vests/vhdl-93/billowitch/compliant/tc2369.vhd
+++ b/testsuite/vests/vhdl-93/billowitch/compliant/tc2369.vhd
@@ -36,10 +36,10 @@ ARCHITECTURE c07s03b01x00p06n02i02369arch OF c07s03b01x00p06n02i02369ent IS
BEGIN
TESTING: PROCESS
BEGIN
- assert NOT( O"4777" = B"100_111_111_111" )
+ assert NOT( bit_vector'(O"4777") = B"100_111_111_111" )
report "***PASSED TEST: c07s03b01x00p06n02i02369"
severity NOTE;
- assert ( O"4777" = B"100_111_111_111" )
+ assert ( bit_vector'(O"4777") = B"100_111_111_111" )
report "***FAILED TEST: c07s03b01x00p06n02i02369 - The type of the literal is determinable from the context in which it appears."
severity ERROR;
wait;