diff --git a/test/add_campsite_type.sql b/test/add_campsite_type.sql index 1804e43..0d5be2d 100644 --- a/test/add_campsite_type.sql +++ b/test/add_campsite_type.sql @@ -42,9 +42,9 @@ select lives_ok( ); select bag_eq( - $$ select company_id, name, description::text from campsite_type $$, - $$ values (1, 'Type A', '

This is what, exactly?

Dunno

') - , (2, 'Type B', '') + $$ select company_id, name, description::text, active from campsite_type $$, + $$ values (1, 'Type A', '

This is what, exactly?

Dunno

', true) + , (2, 'Type B', '', true) $$, 'Should have added all two campsite type' );