Skip to content

Commit 9ef1196

Browse files
committed
Gender is always blank on submissions now, because they changed it to be a tag instead
1 parent 256e562 commit 9ef1196

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/integration/fa_parsing_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@
476476
expect(sub[:category]).not_to be_blank
477477
expect(sub[:theme]).not_to be_blank
478478
expect(sub[:species]).not_to be_blank
479-
expect(sub[:gender]).not_to be_blank
479+
expect(sub[:gender]).to be_blank
480480
expect(sub[:favorites]).to match(/[0-9]+/)
481481
expect(sub[:favorites].to_i).to be_positive
482482
expect(sub[:comments]).to match(/[0-9]+/)
@@ -657,7 +657,7 @@
657657
expect(sub[:category]).not_to be_blank
658658
expect(sub[:theme]).not_to be_blank
659659
expect(sub[:species]).not_to be_blank
660-
expect(sub[:gender]).not_to be_blank
660+
expect(sub[:gender]).to be_blank
661661
expect(sub[:favorites]).to match(/[0-9]+/)
662662
expect(sub[:favorites].to_i).to be >= 0
663663
expect(sub[:comments]).to match(/[0-9]+/)
@@ -757,7 +757,7 @@
757757
expect(sub[:category]).not_to be_blank
758758
expect(sub[:theme]).not_to be_blank
759759
expect(sub[:species]).not_to be_blank
760-
expect(sub[:gender]).not_to be_blank
760+
expect(sub[:gender]).to be_blank
761761
expect(sub[:favorites]).to match(/[0-9]+/)
762762
expect(sub[:favorites].to_i).to be_positive
763763
expect(sub[:comments]).to match(/[0-9]+/)

0 commit comments

Comments
 (0)