1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/caf/bug22976
luz paz 7b5e532f83 0031939: Coding - correction of spelling errors in comments [part 7]
Fix various typos

Fixed via codespell v2.1.dev
2021-01-20 21:27:44 +03:00

26 lines
541 B
Plaintext
Executable File

puts "==========="
puts "OCC22976"
puts "==========="
######################################################
# A draw-command CopyDF fails to copy content of a label
######################################################
set BugNumber OCC22976
# Create a new document and set UndoLimit
NewDocument D
UndoLimit D 100
# Open a transaction
NewCommand D
SetReal D 0:1 1.2345
CopyDF D 0:1 0:2
catch { GetReal D 0:2 } catch_result
if { $catch_result == 1.2344999999999999 } {
puts "OK ${BugNumber}"
} else {
puts "Faulty ${BugNumber}"
}