diff options
author | Takashi Kokubun <[email protected]> | 2020-05-01 00:46:01 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2020-05-01 00:46:01 -0700 |
commit | 773afeb73d658129ddeb0a89ddb7e2ea49165a1d (patch) | |
tree | c3c2be782f0e4389a43508bf82b146420d76ac15 /spec/ruby/library/matrix/unitary_spec.rb | |
parent | 76507bfc3d06984b02e3124cd6557c81af2171cd (diff) |
Fix a typo
Diffstat (limited to 'spec/ruby/library/matrix/unitary_spec.rb')
-rw-r--r-- | spec/ruby/library/matrix/unitary_spec.rb | 2 |
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 |