Skip to content

Commit 14a8779

Browse files
committed
Fix tests
1 parent 65b1fb7 commit 14a8779

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/system/department_admin_should_be_able_to_manage_assemblies_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
area_select = find("#assembly_area_id")
4444

4545
expect(area_select).to be_present
46-
expect(area_select[:disabled]).to be_falsey
46+
expect(area_select[:disabled]).to eq("false")
4747
end
4848
end
4949
end

spec/system/department_admin_should_be_able_to_manage_processes_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
area_select = find("#participatory_process_area_id")
5959

6060
expect(area_select).to be_present
61-
expect(area_select[:disabled]).to be_falsey
61+
expect(area_select[:disabled]).to eq("false")
6262
end
6363
end
6464
end

0 commit comments

Comments
 (0)