#
# PRE: update
#
#  Update using a bareword containing a hex string
#

update {
	Filter-Id := 0x626f62
}

if (!(Filter-Id == 'bob')) {
	test_fail
}

update {
	Filter-Id := '0x626f62'
}

if (!(Filter-Id == '0x626f62')) {
	test_fail
}

success
