mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Remove unused comments from tests. (#13241)
Fabrication does not guarantee the ordering of records in anyway.
This commit is contained in:
parent
4390b50b12
commit
c809f722f7
@ -3,10 +3,10 @@
|
||||
require 'rails_helper'
|
||||
|
||||
describe Report do
|
||||
let(:user) { Fabricate(:user) } # id: 3
|
||||
let(:c0) { Fabricate(:category, user: user) } # id: 3
|
||||
let(:user) { Fabricate(:user) }
|
||||
let(:c0) { Fabricate(:category, user: user) }
|
||||
let(:c1) { Fabricate(:category, parent_category: c0, user: user) } # id: 2
|
||||
let(:c2) { Fabricate(:category, user: user) } # id: 4
|
||||
let(:c2) { Fabricate(:category, user: user) }
|
||||
|
||||
shared_examples 'no data' do
|
||||
context "with no data" do
|
||||
|
Loading…
Reference in New Issue
Block a user