Skip to content

Commit bc232eb

Browse files
authored
Eliminate SetHeight() check and solve the bug in the get_review_report() method check (#834)
1 parent 381415d commit bc232eb

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

spec/docx/smoke/api_document_spec.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,11 @@
9696
end
9797

9898
it 'ApiDocument | GetReviewReport method' do
99+
skip('Include in tests after release 7.3')
99100
skip('Cannot use OpenFile in web version') if web_builder?
100101
docx = builder.build_and_parse('js/docx/smoke/api_document/get_review_report.js')
101102
expect(docx.elements[3].rows[1].cells[2].elements
102-
.first.nonempty_runs.first.text).to eq('Removed text')
103+
.first.nonempty_runs.first.text).to eq('Formatted text')
103104
end
104105

105106
it 'ApiDocument | GetStyle method' do

spec/pptx/smoke/api_table_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
end
5353

5454
it 'Api | SetHeight method' do
55+
skip('https://bugzilla.onlyoffice.com/show_bug.cgi?id=60928')
5556
pptx = builder.build_and_parse('js/pptx/smoke/api_table/set_height.js')
5657
expect(pptx.slides.first.elements.last.graphic_data
5758
.first.rows.first.height).to eq(OoxmlParser::OoxmlSize.new(10_000_000, :emu))

0 commit comments

Comments
 (0)