summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-05-01 00:46:01 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-05-01 00:46:01 -0700
commit773afeb73d658129ddeb0a89ddb7e2ea49165a1d (patch)
treec3c2be782f0e4389a43508bf82b146420d76ac15 /spec/ruby
parent76507bfc3d06984b02e3124cd6557c81af2171cd (diff)
Fix a typo
Diffstat (limited to 'spec/ruby')
-rw-r--r--spec/ruby/library/matrix/unitary_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/matrix/unitary_spec.rb b/spec/ruby/library/matrix/unitary_spec.rb
index b0c23e0e84..c5b8cb6cee 100644
--- a/spec/ruby/library/matrix/unitary_spec.rb
+++ b/spec/ruby/library/matrix/unitary_spec.rb
@@ -9,7 +9,7 @@ describe "Matrix.unitary?" do
end
ruby_version_is '2.8' do # matrix v0.3.0
- it "returns false for non unitary matrix" do
+ it "returns true for non unitary matrix" do
Matrix[[0, Complex(0, 1)], [Complex(0, -1), 0]].unitary?.should == true
end
end